text
stringlengths 44
776k
| meta
dict |
---|---|
Code is going to disappear - estraschnov
http://make.bubble.is/post/90659170481/code-is-going-to-disappear
======
davideschiera
A very interesting source of thoughts is the work done by Bret Victor
[http://worrydream.com/](http://worrydream.com/) (take a look at Recent Output
section).
Code the way we know it today will change. After all, human languages keep
changing.
However, changes will happen in a very natural way, with selection of the best
compromise between efforts and results. For instance, programming languages
might not change that much while we might end up with more and more powerful
frameworks to build software.
Nevertheless, next 50 years of evolution will be very very interesting to
follow.
~~~
estraschnov
Yeah Bret has some very interesting points. I don't think he's shipping stuff
anymore, that's kinda sad...
I agree with your point about frameworks, Bubble is a framework in some ways.
However, my point was that at some point, creating software will not be done
via typing code, but more through a more pleasant input/user experience
(independently of the framework, which will of course evolve).
~~~
davideschiera
Ok, that's a good and hopefully true point. Code and tools will both evolve,
eventually you might not deal directly with code but with the abstraction
offered by such tools.
Code itself won't likely disappear. It will be just buried behind more and
more layers of abstractions.
------
rnovak
Code wont disappear unless there's some magical evolution of the PC.
Last time I checked, the idea of a universal computer came from Robert Turing
several decades ago, and no one has even come close to revolutionizing that.
Even quantum computers fundamentally are hardware devices that emulate other
computational machines through means of software/algorithmic theory. It hasn't
changed, and it wont.
Just because you can understand a couple languages doesn't mean you understand
computation.
~~~
estraschnov
When I said code will disappear, I mean people won't use it as much as they do
today. Code will still be there, assembly language is still there for
instance. I agree with that point.
I'm just saying that at some point, more people will be creating software, and
for most of them, they won't use code, but something more visual. Similarly,
today, most people don't use assembly language any more.
In other words (back to what we do at Bubble), we're trying to make of
JS/Python/Ruby what assembly language is today.
------
reuwsaat
Books are becoming so popular that we'll no longer need an alphabet or
grammar!
| {
"pile_set_name": "HackerNews"
} |
At 90, She's Designing Tech for Aging Boomers - chiachun
http://www.npr.org/blogs/alltechconsidered/2015/01/19/377702882/at-90-shes-designing-tech-for-aging-boomers
======
jgamman
please, please more of this. silicon valley seems determined to produce more
things that fall in my bucket of "stuff my mum used to do for me" \- uber =
mum used to drive me places, disruptive laundry, shopping for food, buying
clothes... i'm not even sure if i'm half-joking.
------
stephenaturner
Makes sense. As more of the population ages, needs technology, lives longer
but is also still interested in using technology, catering to this market will
be both necessary and useful to companies.
| {
"pile_set_name": "HackerNews"
} |
iQoS – An open source QoS-emulator for VoIP - Kernel-Panic
http://iqos.bucaramanga.upb.edu.co:8080/
======
detaro
What does this do/how would one use it? I can't really make sense of the
interface
~~~
Kernel-Panic
iQoS is an open source software that evaluates quality of service metrics
(Bandwidth, Jitter, Latency, Packet Loss) in Voice Over IP. It can predict de
voice quality and the behavior of a VoIP call in both endpoints. For demo
please select both eth0 interfaces. Video demo:
[https://www.dropbox.com/sh/d682hqgg3q6uzi5/AACXaLJS2QiZeUe38...](https://www.dropbox.com/sh/d682hqgg3q6uzi5/AACXaLJS2QiZeUe38v0l_923a?dl=0&preview=iQos+Demostraci%C3%B3n.mov)
| {
"pile_set_name": "HackerNews"
} |
Samsung Patent Describes Holographic TV Technology - jonbaer
https://consumerist.com/2016/11/14/samsung-patent-describes-holographic-tv-technology/
======
PaulHoule
It is not like princess Leah. The diagram shows the image projected into the
fustrum between the screen and the viewer rather than hanging in space and
viewed perpendicular to the light beam. To do that you'd need to make the
photons turn sideways in the air or originate new photons by sparking the air
to draw videos.
| {
"pile_set_name": "HackerNews"
} |
Ask HN: What's your favorite embedded system? - timtrueman
I'm looking for something rugged, capable of running Linux, and cheap if possible. I'm just curious what you guys have actually used and liked as I evaluate which one would work for me.<p>I've used this in the past but I'm curious what else is out there: http://parvus.com/products/MilitaryAerospace/EmbeddedBoards/CPU-1421/
======
bootload
_"... What's your favorite embedded system? ..."_
Arduino ~ <http://arduino.cc/>
Hands down the cheapest, most open-sourced and fun stuff you can play with. I
know it doesn't run Linux, but the cost, expandability through open-design and
toolchain make it worth considering for prototyping.
------
bayareaguy
<http://www.soekris.com> has good stuff
------
joe_bleau
My favorite embedded stuff has always been self-designed.
| {
"pile_set_name": "HackerNews"
} |
Translating an ARM iOS App to Intel macOS Using Bitcode - sjuut
https://www.highcaffeinecontent.com/blog/20190518-Translating-an-ARM-iOS-App-to-Intel-macOS-Using-Bitcode
======
ken
The intro makes it sound like this could be feasible for translating x86 Mac
apps into ARM Mac apps.
> So, what if the Mac switched to using ARM chips instead of Intel? Well, as
> you can see, Apple could use Bitcode to translate every Bitcode-enabled app
> on the Mac App Store, without consulting developers, so it would be ready to
> go on day one.
But:
> Apple doesn't enable Bitcode for submissions to the Mac App Store today
Right. The flag to enable bitcode isn't even visible in Xcode for Mac apps.
There's no such thing as Mac/x86 bitcode yet, in or out of the MAS. And:
> ARC appears to use some inline assembly, which means you'll need to disable
> ARC for a project for arm64-to-x86 translation to succeed right now.
So this approach will only work on Objective-C programs, written in a pre-2011
style -- which I'd bet is a vanishingly small fraction of the apps on the MAS
today.
It's a neat exercise in what is possible for a simplest-possible-app, but it's
hard to imagine Apple would actually use this approach. It'd require them to
ship a couple big new features in Xcode, and then for everyone on the MAS to
recompile their apps using those features. Easier all around to just add a new
architecture in Xcode the normal way, and have developers compile fat
binaries.
~~~
Someone
_”ARC appears to use some inline assembly, which means you 'll need to disable
ARC for a project for arm64-to-x86 translation to succeed right now.”_
That’s fairly easily fixed, certainly if you’re Apple. They already have the
equivalent x86 code (Swift and modern Objective-C couldn't exist without it),
so they could detect the specific inline ARM code fragment and replace it by
the equivalent inline x86 code.
~~~
saagarjha
This seems like it would be very fragile.
------
sjtgraham
This is rather "embed intermediate representation, extract, run another
target's back end, and link". I was hoping this would be explaining how to go
from ARM by uplifting executable to LLVM IR and retargeting for Intel. This is
notionally already possible with ELF and PE executables using McSema
([https://github.com/trailofbits/mcsema](https://github.com/trailofbits/mcsema)).
If anyone is working on this please email me (address in profile), it's
something we slated for a future research project and I'd love to talk.
~~~
voltagex_
>McSema and remill were developed and are maintained by Trail of Bits, funded
by and used in research for DARPA and the US Department of Defense.
~~~
Twirrim
So?
~~~
richrichardsson
Don’t tell them where the internet came from, there ain’t enough tinfoil in
the world.
------
fiddlerwoaroof
Sounds like we're reinventing the AS/400 piecemeal:
[https://en.wikipedia.org/wiki/IBM_System_i#Instruction_set](https://en.wikipedia.org/wiki/IBM_System_i#Instruction_set)
[http://ibmsystemsmag.com/blogs/you-and-i/archive/timi-
protec...](http://ibmsystemsmag.com/blogs/you-and-i/archive/timi-protecting-
investments-and-integrity-in-ibm-i/)
------
saagarjha
I would be _very_ surprised (and impressed!) if Apple managed to pull this
off. With the bitcode transition on watchOS Apple had full control over the
ABI and architecture that they were going to target: this isn't the case for
x86. Sure, this works for the very simple case presented here, but I forsee it
quickly breaking down for any non-trivial application. At the very least, it
will not work correctly on _every_ application.
------
writepub
Alternatives:
1\. WebAssembly
2\. A subset of LLVM-IR that's architecture independent. PNacl from Google
used this across chip architectures
~~~
saagarjha
Neither of these would help migrate current Mac apps.
~~~
writepub
I meant, they are alternatives for Apple to consider, instead of reinventing
the wheel on a cross architecture IR. Of course they won't help _current_ Mac
apps that don't have IR in those formats
~~~
saagarjha
I don’t think we really have a “cross architecture IR” yet.
~~~
writepub
Who's "we"? If you mean Apple, their IR (bitcode) is alomst a 100% the same as
LLVM-IR, so it is not really Apple's. Aside from WebAssembly and PNacl cited
in my parent comment, there's .net IR, JVM byte code, yada yada yada ..
The universe is teeming with cross architecture IRs. Eventually, LLVM will
have a cross platform LLVM-IR, which will possibly be even more impactful than
WebAssembly has been in it's short lifespan
| {
"pile_set_name": "HackerNews"
} |
The shady economics of ‘buy one, get one free’ deals - zzaner
https://thehustle.co/are-buy-one-get-one-free-deals-worth-it/
======
rlue
What makes this really interesting is how living in an economy where prices
are both set by the seller and non-negotiable causes consumers to equate
asking price with value.
As a consequence, BOGO feels like a better deal than one item at 50% off MSRP.
A 50% discount is a change in the asking price; the value of this item must
have depreciated in some way for the seller to want to get rid of it (e.g.,
this garment is going out of season), and the price I'm paying is a fair deal
that I'm happy to accept because I don't need to indulge in extravagances.
But in a BOGO deal, the asking price hasn't moved (or, as the article
discusses, may actually be inflated); the fact that I paid full price means
that it retains its original value, and the one they throw in is simply an
enticement. In other words, I purchased an extravagance at full price, but it
was a deal because I walked out with two. The amount paid is double the
previous example's, but the perceived value is fourfold.
This isn't even getting into the actual value of perceived value (cf. the
sticker price of wine vs. its perceived quality). Really interesting stuff.
~~~
pattle
> This isn't even getting into the actual value of perceived value (cf. the
> sticker price of wine vs. its perceived quality). Really interesting stuff.
I fall foul of this trick quite a lot when food shopping. For example if I'm
buying a box of cereals and I see one is priced at £1.80 and another is priced
at £2.50 but is on sale from £3.50 I'll buy the more expensive one because I'm
under the illusion that I'm getting a good saving and a better quality
product. In actual fact though I've just spend quite a bit more for a
marginally better, if not the same quality item.
~~~
maaaats
Even without discount on the more expensive one, it can be used as a marketing
trick to make you buy more expensive. For instance offer three versions of a
product: $1 branded as cheap/bad, $2 branded as good, $5 branded as luxury.
The last one exists mainly to anchor the value of the $2 as also cheap and to
make you buy it. If one only had the choice between $1 and $2, most people
would choose $1 option.
~~~
chriswarbo
I agree that there's been a move to split "Store Brand X" into "Store Basics
X", "Store Brand X" and "Store Finest X", and that the "basic" product is
often perfectly good.
However, for broader product categories, there's also a tendency for the most
and least expensive products to be outliers, with the cheapest being barely
enough to justify the label and the dearest being aimed at rich suckers. Hence
the heuristic of getting the 2nd cheapest (especially if it's a one-off
consumable, where savings won't accumulate); or, if splashing out, getting the
2nd most expensive.
In my experience this definitely applies to things like wine and chocolate,
where the scale is roughly:
|
Q|
u| x
a| x
l| x x x x
i| xx x
t|
y|
|x
+----------------------------------------------
Price
~~~
rlue
In some cases, businesses know consumers are following some heuristic like
this, and counter-strategize accordingly (or so I've heard). According to this
2013 blog post[0],
> Restaurants realize that many people won’t order the least expensive wine
> (no one wants to look like a cheapskate!) so they often go for the second
> cheapest. That’s exactly why it’s often the most marked-up bottle on the
> list.
[0]:
[https://web.archive.org/web/20131210062034/http://www.urbans...](https://web.archive.org/web/20131210062034/http://www.urbanspoon.com/blog/2013/12/10-things-
restaurants-arent-telling/)
------
chrisdone
I feel that there is a wealth/background effect here that could be studied
somewhat too. I think people who don't have to worry about money are less
likely to pay any attention to discounts and deals.
Having come from a council estate, there is a certain mindset behind getting a
deal for everything, making your little money go as far as possible, buy one
get one free, or discounts on anything, or coupons to get into restaurants or
discounted vacations, or companies that "get you deals" on all your electric,
gas, TV, internet bills, 8 packs of cheap beer, etc. are all seen as victories
and you are crazy for not taking advantage of them. There's an emphasis on
getting more quantity for less money. That's easily exploited.
~~~
hannob
I don't have hard numbers to quote on this, but I'm very convinced that you
end up paying more in the end.
From my own experience and pretty much every one I talk about this, people
have a tendency to buy things they'll never need. (I constantly try not to do
that, but it takes active thinking about it all the time.) No discount deal is
cheaper than the one where you don't buy something you don't need.
Then there's underestimated costs that aren't immediately visible. If you buy
more stuff of items that you use over a longer timeframe you'll have to store
them. Which of course means you're paying rent for the space in your flat
that's taken up by excess stuff.
~~~
dazc
A long running promotion in Tesco is 3 bottles of any brand beer for £5.25. I
can't imagine anyone ever goes into a store with the intention of buying 3
bottles but if you just buy 2 you're misguided into thinking you'll lose out.
In reality, you're spending more and drinking more than you really want to.
~~~
mrec
It's not like bottled beer goes off, so unless you were planning to buy 2
bottles _and then never buy beer ever again_ , I don't see the problem.
~~~
ubercow13
It requires more self control not to drink the third one when it's sitting in
your fridge than when it's sitting in the supermarket
~~~
jogjayr
Easy. Don't put it in the fridge until you know you're going to drink it later
that day. Or quick-cool it by dunking in ice water for about a hour.
------
ChrisSD
> A coffee mug that usually sells for $10 + $3 S&H will go for $13, with FREE
> shipping.
I actually prefer this. It's much better than shops that activity try to hide
shipping costs until the last moment. Also it makes comparing prices quicker.
~~~
dalai
On the other hand, if you want to buy two of them they cost $20 + $3 S&H or
$26 with free shipping.
~~~
glastra
S&H is not always fixed-rate. In fact, "handling" two items should cost more.
Shipping more weight should also cost more.
~~~
elcomet
More than one shipping cost, yes, but it should be less than twice the
shipping cost. Otherwise you could just order the items separately.
------
richpimp
I recently went to a department store called Kohl's for the first time with my
wife, who'd been shopping there for years. For those unfamiliar with this
store, think something similar to a JC Penney's. What struck me was that above
every item was some digital signage showing a discounted price or promotion
(B1G1 Free, 25% off, etc.), along with the MSRP price. So basically, anything
I looked at seemed like a great deal. They also have a rewards program whereby
you get "Kohl's cash" whenever you reach some threshold for purchases
(something like $5.00 Kohl's cash for every $100 spent), which effectively
gives you a discount.
Of course, I soon realized that this was all simply a tactic to encourage
people to continue to spend their money in the store, an effective one at
that. The "sale" price was really no different than the standard price at any
other retail store. It was just the perception of getting a good deal and
triggering the dopamine receptors in the brain. I told my wife this, but her
reaction was one of incredulity. Her thinking was she was saving money by
shopping there. It's such a simple, yet brilliant tactic. Make people feel
like they're getting a good deal, and they'll spend more money than they
otherwise would.
------
chippy
> Most online clothing brands offer ‘free’ shipping, with the catch that you
> have to meet a minimum purchase amount (often $100) to qualify. Some 58% of
> consumers will add additional items to their cart — often things they didn’t
> originally intend to purchase — just to “save” $5 to $10 on handling fees.
You will find people vigorously defending their behaviour when challenged on
this. For example: Amazon Prime.
Amazon Prime is a product that costs you money and makes you spend more money
on Amazon, and yet people will defend their spending saying that they are
"saving" money.
The shipping is "free" but you have to spend £8 a month to qualify. If you
don't spend at amazon during that month you are still down £8 (that's about
£100 a year). If you spend something at amazon during the month you are still
down the £8 in addition to the money spent at something.
Amazon Prime is a shady product designed to get you to spend money at Amazon.
As the article says often you will find the same product for lower in other
places. You just need to do the sums. Another common defence we will see when
people respond to this is "Oh I know it doesn't save me money, it's the
convenience".
Retailers love making their customers comfortable and not thinking about these
shady offers. Imagine having millions of customers so happy they will pay more
money to you _and_ defending this very process.
Now... there's also the shady dark patterns the company uses to sign you up
for it and make it it harder for you to cancel, but that's another thing!
~~~
porpoisely
I'm embarrassed to say Amazon got me with this trap a few times. I'm at the
checkout with a $19 mouse but amazon reminds me that I could get free shipping
if I get to the $25. So I go back and look for something I need for $6 bucks.
Can't find anything I need for $6 bucks so out of frustration I somehow end up
with a $70 worth of stuff I don't need just to save a couple of bucks on
shipping.
~~~
mneubrand
What worked for me is to settle on a generic filler item. Personally I use
toothpaste. Costs a decent amount, can be stored for a long time, doesn't need
much space and I'll need it eventually. This way I don't go looking around
randomly but just always fill the gap with that item.
------
scraft
Buying the right BOGOF items saves money. For instance, after spending a lot
of time trying different options, I now know exactly what face soap I want and
I also know the price it sales for. From time to time, it'll be sold as a
BOGOF, so providing the price makes sense (i.e. it is the normal price or less
than 200% of the normal price) then it is a good buy (it has long shelf life,
and will always be used).
I use up about 1.5 loaves of bread per week, so some weeks I buy one loaf,
some weeks I buy 2. If it is a week where I only need one, but it is BOGOF I
just buy 2 and put on in the freezer (and then take it out the following
week). It is a similar story for cheese (although that doesn't need to be
frozen, staying in the fridge, sealed, lasts for long enough).
One of the bigger savings we have got from a food perspective is to move
towards making a 'menu' of food we are going to eat that week. Then buying the
ingredients needed for each dish. This means little or no wastage (good on so
many levels), being able to buy at a good price (rather than not getting
something required then picking it up at somewhere convenient buy more
expensive halfway through the week) and knowing the quantities up front makes
it easier to either buy in bulk, or knowing when a deal that involves extra
quantity will be suitable.
The above approach has also meant eating much healthier food, not finding
ourselves in a position where we order take away because we don't have
anything in. Ensuring we have not only meals planned, but healthy snacks
(fruit etc) factored in too. It isn't a binary choice of by doing this we get
everything 100% perfect, but it has been a hugely noticeable improvement.
I have read several times that some of these approaches and typically favoured
by those who have more disposable income, which isn't ideal, as we really want
those with less income to be getting all the good savings to try to ease/stop
the wealth gap.
~~~
austincheney
> I have read several times that some of these approaches and typically
> favoured by those who have more disposable income, which isn't ideal, as we
> really want those with less income to be getting all the good savings to try
> to ease/stop the wealth gap.
The disposable nature of income is orthogonal to wealth. It is possible and
common to be wealthy and still be broke. Consider the pro athletes earning 7-8
figure income that are still forced into bankruptcy. It is also unrealistic to
think people who are weak at saving money need a nanny to follow them around
and police their spending habits in an effort to close the wealth gap.
The most straight forward means to close the wealth gap is to tax capital
gains as regular income and incentive spending from the wealthy with a
punishing estate tax.
~~~
sokoloff
A punishing estate tax probably does more to incent trust formation, life
insurance sales, minority ownership transfer structures, and other such
mechanisms to bypass the estate tax than it does incremental spending.
It's largely unprepared idiots that pay any substantial amount of estate tax.
------
Vinnl
I tend to make a conscious effort to ignore "deals". As far as I know, the one
case in which a deal is actually advantageous as a consumer is when that deal
encourages consumers to buy more of a certain product at the same time, and
the merchant passing part of the scale and predictability savings on to the
consumer. For example, if you buy tooth paste every now and then anyway,
buying it at the same time as many others might make it cheaper to offer that
tooth paste. Or for example having the option between essentially equivalent
meal ingredients, more people cooking the same meal at the same time can allow
for offering those ingredients more cheaply.
In most cases, however, it feels like they only benefit the merchant, by
manipulating the consumer to buy things they don't need, or more expensive
things.
I don't think the cost savings I'm missing out on by not making purchases in
the first category outweigh the extra costs I avoid by also not making
purchases in the second category.
That said, I'd love to hear of more ways of how deals can actually benefit
both consumer and merchant.
~~~
wdutch
there's a tactic called a loss leader where the merchant has a discount and
sells a product at a loss to get people into the store (and hopefully buy
other things that make them a profit). Loss leaders are pretty hard to spot
unless you actually know the normal retail price
~~~
Vinnl
Right - I thought of mentioning it, but then decided it was part of the
category "making me buy more expensive things". Presumably, I wouldn't have
gone into that store otherwise, e.g. because it's more expensive. A similar
trick is selling a certain product (e.g. an ingredient) at a loss, because it
is often bought together with more expensive products (e.g. the rest of the
ingredients of the typical meal).
Of course, you could still benefit from this if you were to visit that store
anyway, or would have bought those products anyway. However, that's still the
case in my "ignore deals" strategy: I don't actively _avoid_ deals, I just try
not to use them as a reason to buy something.
------
maaaats
Up until 2009 in Norway, it was illegal to advertise products with unrelated
additions ("tilgift"). Not strictly related, as here it's the same product.
But this made it illegal to do promotions like "buy our car, get a free iPad",
"buy this coke, get a chance to win prices". I think consumers wanted the law
gone, as it looks like we missed out on deals other countries had. But it
makes it harder to compare and tricks our brains.
~~~
mcv
So even on an electoral level, consumers get fooled by this and want access to
shady deals. That's going to make it really hard to get fair consumer
protection laws.
(Though maybe it's not surprising that people get fooled in politics.)
------
ocfnash
I quite enjoy mentally parsing these "offers" in logically equivalent ways.
E.g., "buy one get one free" as "only sold in units of two" or even "each
purchase of one requires compulsory purchase of a second".
As a child I remember considering the difference between "extra free" and
"free" which I used to see on cereal boxes. Sometimes the box claimed "10%
free!" but other sneakier boxes would claim "10% extra free!". The latter
allows the marketer to quote the same nominal figure for a smaller absolute
quantity.
~~~
thaumasiotes
> Sometimes the box claimed "10% free!" but other sneakier boxes would claim
> "10% extra free!". The latter allows the marketer to quote the same nominal
> figure for a smaller absolute quantity.
I'm not sure they're trying to be sneaky. The difference is too small for
anyone to care about:
\- 10% free! (purchase price pays for 90% of the cereal)
\- 10% extra free! (purchase price pays for _91_ % of the cereal)
(Also, it's the first option that indicates a higher unit price, not the
second.)
~~~
ocfnash
Actually I think we're in agreement here: I didn't make it clear but the
nominal figure to which I was referring was the magnitude claimed free. By
saying "extra free" they get to write down 10% instead of 9%.
I also agree the difference is small in this case but I'd argue:
* Small wins are still wins.
* The difference is not so small with bigger percentages.
Imagine I decide to tweak my margins for a time and sell 1.5Kg of cereal for
the price I previously sold 1Kg. I could say "33% free" (relative to old
price) or "50% extra free".
------
flavor8
We're staying in Nashville overnight on our way somewhere else and enjoyed
walking around on a weekend evening.
We noticed that all of the stores selling cowboy boots (and there are
multiple) have a "buy one get two pairs free" offer. All boots in the store we
checked out seem to be priced at $300+. So, instead of simply offering
discount boots at ~$100, they're leading you to think you're getting
$300-quality boots and $600 of "free" value in the extra pairs. Framed like
that, who could possibly refuse?
------
afpx
I’m very interested in knowing what proportion of retail revenue comes from
these types of dark patterns. Is it even possible to come up with a number? If
so, I’d be willing to help fund the research.
The other day a friend and I were discussing the “take X% off your entire
order” coupons. These seem to be very common, lately. She mentioned that she
recent used one on a cart of $100 in items. She expected a $20 discount. But,
to her surprise, she only received $2 off. Apparently all but one of her items
were ‘restricted’ items.
It seems like many companies find it easier to trick people than to actually
provide great service or products.
~~~
tyingq
"Free shipping" is a funny one. For smaller businesses, it's basically
subsidizing far away customers with nearby customer money.
I offer it not because I want to deceive people, but because we sell more that
way. People like predictable upfront prices without having to tell anyone
their location.
It is, of course, not "free". We just calculate the average shipping cost and
pad the price.
~~~
hopler
How much does shipping cost actually vary? I always assumed that first//last
mile handling of a package dominates over the fuel/depreciation cost share of
driving the item farther.
~~~
tbirdz
For usps rates, see here:
[https://docs.google.com/spreadsheets/d/1hyyaAYoi2P_CRWwrUJhB...](https://docs.google.com/spreadsheets/d/1hyyaAYoi2P_CRWwrUJhBPOaJC5YBJuwIZtg4OVQz1NE/edit#gid=1968755870)
I don't know how much ups/fedex costs.
------
samstave
Tangentailly related; i recently needed to buy a new shirt, where in the past,
i had shopped at Express for some work shirts - but havent been in their store
in several years - i went in as they were having a 40% off store wide.
Their shirts, which i used to have dozens of - are now priced at $69 per
shirt... less 40% for this sale.
Ive never paid $69 for one of their shirts in the past. So the 40% off now
reflects what i ised to have paid. So i feel they raised the prices of their
shirts, then hold frequent 40% off sales to lure in traffic of people thinking
they are getting a great sale - only to pay what the full retail of the shirt
used to be.
So Express literally found a way to inflate sales of product through this
tactic.
~~~
tych0
JCPenny very famously nearly went out of business because they do this all the
time, but then tried to revert to just pricing things normally. People thought
they weren't getting deals any more, so they stopped going there.
------
telesilla
My local supermarket does this all the time to my great annoyance, I never
thought about the mathematics of why they don't just discount the item. At
least it's better than the kind of deals that abuses people's misundertandings
of mathematics entirely, such as
[https://www.telegraph.co.uk/finance/personalfinance/money-
sa...](https://www.telegraph.co.uk/finance/personalfinance/money-saving-
tips/10986643/Supermarket-fake-offers-in-pictures.html)
~~~
Shivetya
Here in the Southeast the grocery chain Publix is pretty much the BOGO chain,
as in you buy stuff that is BOGO and take care otherwise. Their prices are
standard fare for a chain grocery and the standard price of the item falls in
line with other chains. Now for the most part any serious saver would BOGO and
then hit up Wal Mart or Aldi to finish out their savings.
One interesting note is that in general you don't have to buy two items as
part of a BOGO, you can buy one at half price. Now this is not true as some
manufacturers, namely Coca Cola, require the purchase to be made as described.
Meaning if its buy two get one you must take all three. They even get silly
with Publix in that there will be buy two get two with Coke products that, you
guessed it, you have to have four of the product to get it at the price of
two.
------
billpg
My local pizza shop offers "Buy one get one free" and "Free delivery".
They also offer a discount if you only want one pizza, and a discount if you
collect instead of having it delivered.
~~~
vxNsr
> _and "Free delivery"._
I'd argue this is legitimate, or at least everyone is footing the bill when
you request delivery. But that's no different than everyone footing the bill
for having tables and chairs in the shop.
~~~
mikeash
A discount for getting it yourself is the same as charging for delivery,
though.
And “free” delivery never is, at least in then US where tips are expected.
~~~
vxNsr
Rarely is there a discount for getting it yourself. usually the price is the
same and either they charge for delivery or they don't.
~~~
mikeash
The shop discussed in the original comment does it.
------
jamiethompson
I think the counter argument to this is non-perishable food and other
groceries.
There is a certain brand of shelf stable non-dairy milk that my family use a
lot of. The usual price is £1.50 a carton. Every few months there is a 3 for
£3.00 offer. Now this is obviously a ploy to get you to buy more than you
needed and also to appeal to new customers.
But I use these offers to stock up on weeks worth of the stuff. If has a shelf
life of over a year so it's a no brainer. I hardly ever pay full price.
~~~
mrhappyunhappy
I’m curious to know what’s happening with our supermarket ice cream discounts.
Every Friday all ice cream is 50% off and as you’d expect a lot of people buy
their ice cream on a Friday. The rest of the week it’s full price. Does that
mean they are taking a profit hit on Friday just to move inventory or is the
ice cream marked up higher than their ideal selling price which would be the
standard profit margin they expect on Fridays? Not sure...
~~~
Matticus_Rex
They're using it as a loss leader: taking a cut in profit or even a loss to
pull people into the store, where they're likely to buy more than enough to
make up for it.
------
kabacha
I've been living in Thailand for a while now and the market is so unregulated
and abused by these sorts of deals.
A big super market near my house runs 2for1 buns every day for the past year.
I've got desensitised to the point where I don't even see the "original price"
anymore. The deal price is just the real and only price. The only real deals
are the "almost expiring" price reductions super markets put out before
throwing out old food.
I wonder if in the grand scale of things this abuse backfires or I'm just a
rare case as a foreigner.
~~~
nickjj
Are regulations supposed to stop that behavior?
There's plenty of grocery stores in NY that continuously run the same
"special" on the same items. I've seen the same hot dogs on sale for the same
price for a year.
~~~
vxNsr
Yes, there are laws about how long a sale can be, if a product is on sale for
a significant amount of time the seller has to make that price the actual
price and cannot advertise it as "on sale." Likely those stores run afoul of
this law but are too small to be prosecuted by the DA/FTC.
------
consp
Fortunately some of this (bloating the price just before a sale to cover the
cost, note: e.g. day before) is illegal where I live. Though it doesn't stop
shops from trying. It does give the customer some extra power. If for instance
the shop fails to sell all stock and dumps it afterwards you can try to claim
the difference as this falls under deceptive practices.
The buy one get two variant is fine as long as there is actual profit to the
customer and no shady 'you still pay the same but it looks different' offers.
~~~
JeanMarcS
Same in France. So when sales time arrives, you can see some items prices
rising up a week before (which is, de facto, legal as long as you do it in
advance)
~~~
karambahh
The rules are slightly more complicated.
You are only allowed to discount items already in stock a month before the
start date[0] That's why the back of the shop is fully loaded by boxes a month
before the sales period starts.
The rules seem silly because it's an open secret, all companies jack up the
price and stock up just before... but you'd be hard pressed to find actual
proof:
"I ordered 50k items to the supplier just 30 days before, I meant to buy only
50, fat finger mistake, so we had to discount them".
"Yes, the reference price is based on the highest price we had on record among
our 500 stores. Yes, I know it was more than twice the median price, fat
finger mistake but hey, who does not make mistakes, 14€99 is too similar to
5€50..."
[0][https://www.service-public.fr/professionnels-
entreprises/vos...](https://www.service-public.fr/professionnels-
entreprises/vosdroits/F20566)
------
hakfoo
I suspect a lot of the BOGO deal structure is to exploit the consumer who
intentionally buys only what he can use.
Supermarkets here have gotten big on "buy one get (1, 2, or even 3) free" for
large meat packages (racks of ribs, for example), but keeping the price tag
high-- say $12 per pound. If you fully exploit the offer, you're effectively
paying a bargain $3 per pound, but that requires a lot of fridge space to deal
with four big packs of perishable meat. The consumer who says "I only need one
or two" is being gouged for NOT wanting to throw rancid leftovers away.
A similar related gimmick are the "buy N, save $M deals." If you buy any ten
of a pool of random items, they knock off $10 from the order, but if you only
need 9, or 1, you're paying full price.
There's definitely been a swing from "everyday low prices" to "gimmicks and
games." Everyday low price became "3-day sale" became "only with club card"
became "only if you install our terrible app and explicitly select you want
the promotion ADDED to your club card."
I think the ultimate goal is to get where they can advertise aggressive
discounts, knowing they don't have to give them to anyone but the people most
willing to jump through hoops to get them.
~~~
Spivak
So price discrimination. I don't see any problem with it. People who are the
most price sensitive will jump through hoops and be rewarded for it.
------
whoopdedo
A related and greater rip-off is the discount cards that give you coupons
after a purchase. Consumers become addicted to these "deals" that make it seem
as if they're paying a very small amount for something. When in fact they paid
up-front with the original overpriced purchase. It amounts to an interest-free
loan to the retailer that is paid back to you with those coupons.
~~~
chippy
These cards are the original data tracking example as by using the cards you
give the retailer all your data including demographics of your age and
location etc. From what I recall retailers cannot use your credit card
purchase history for this, you have to use opt in and use the "loyality"
cards.
------
User23
My mother always said "50% off what?" Obviously when the merchant sets the
nominal "retail" price to whatever they want, they can set the discount to
whatever they want too and maintain their profit margin. This is basic algebra
solving for one variable given a desired "discount". It's amazing how
effective it is though.
~~~
simonh
I'm only (vaguely) familiar with the rules in the UK, but they include tests
to ensure the 'was' price was actually a genuine usual selling price. This
includes tests that the 'full' price must have been in place for longer than
the promotional period, that it must have been recent and that significant
sales were made at that price. Buy one get one free also has to mean you get
two equivalent or similar products. Compliance is also monitored and enforced.
I'm not claiming it's perfect, but by and large over here you can have
reasonable confidence these promotions are usually valid.
Conversely my wife is Chinese. Over there 'buy one get one free' usually means
something like buy one dress, get one flimsy, non colour-matching belt free.
~~~
thaumasiotes
I'd be pretty surprised if British law prohibited "buy a dress, get a belt
free" promotions.
~~~
simonh
If you promote it as such, or 'free belt with every dress' then sure. You
can't market it using the phrase 'buy one get one free' though.
------
legatus
Does anyone know of a book (even better a textbook, if possible) detailing
these strategies? This article is about the "BOGO" deal, I'm interested in
reading about other kinds of these strategies, and why they work. If anyone
has any recommendation, especially for more academic stuff (textbooks or
papers), I would greatly appreciate it!
~~~
joshvm
Not a textbook, but Freakonomics is in that ballpark.
It's (un-) surprisingly hard to find academic information about this on Google
because all the results are click bait articles about how to improve sales,
rather than peer reviewed theory.
~~~
legatus
Thanks, I'll definitely look into Freakonomics. I agree it's pretty hard to
find info on this topic from an academic perspective, and it's really
unfortunate, as I believe it is important for the wider public to understand
these tactics and why they work.
~~~
yitchelle
The book "Predictably Irrational" by behavioral economist Dan Ariely that was
mentioned early on in the article is also a good read. It does not directly
related to pricing strategy but provide good insight to the irrational
decisions that we make, and the BOGO falls into that category.
In a similar vein, I have just finished "Nudge: Improving Decisions About
Health, Wealth, and Happiness" by Thaler and Sustein. This might be worth a
look as well.
------
dspillett
Everything even vaguely commercial with the word "free" attached is shady. I'm
in a minority here (I must be, otherwise it would stop being common because it
wouldn't bring in enough marks) but I've grown cynical enough that the word
actually puts me on guard and I go searching for the small print, or it just
puts me off completely if I don't have time for the small print.
It isn't just BOGO offers, anything free is suspect:
* Just pay postage! (postage is nearly as much as the item costs on Amazon/eBay/others with delivery included, and it'll take up to six weeks for your item to arrive)
* Do the Great North Run for free! (... plus a £320 charity pledge)
* First month free! (if you don't cancel 27 days before the free month ends you'll be paying for the service for at least 6 months afterwards)
~~~
chii
> * First month free! (if you don't cancel 27 days before the free month ends
> you'll be paying for the service for at least 6 months afterwards)
yes, this is a terrible bait and switch - and should be illegal unless the
fine print isn't so fine that nobody reads it.
~~~
tatami
I also had services where the free trial stopped working as soon as I
cancelled. Which I did so that the trial doesn't spill over into an
abonnement.
------
mojuba
The shady economics of a non-functioning close button of an annoying
"Subscribe to newsletter" popup. Bottom line: it works but also sends a
negative subliminal signal to the visitors that a given business is desperate.
Just something for website owners to have in mind.
~~~
mcv
I increasingly tend to close popups on websites by deleting them from the DOM
through dev tools. Not the most user-friendly method, but it's quite thorough.
~~~
mojuba
Doesn't always work though, some web sites also manage to block scrolling of
the main content which may not always be easy to figure out (esp. on messy web
sites with megatons of JavaScript code, HTML and CSS).
And surely there are browser plugins that help you remove annoying DOM
elements in one click?
~~~
icebraining
uBlock Origin has a visual picker, which also saves the blocking rule for
future visits: [https://github.com/gorhill/uBlock/wiki/Element-
picker](https://github.com/gorhill/uBlock/wiki/Element-picker)
~~~
vxNsr
Only issue is the scrolling, how do I make a rule that blocks the inline js to
prevent scrolling in the body elem. or worse when it's not inline.
~~~
mcv
I usually look at the body element and start removing classes there. That
often works. But I suppose a plugin should be able to figure out automatically
why something isn't scrolling.
~~~
mojuba
Or a shortcut for non-technical people: outline.com. Works perfectly even on
most paywalls, not just annoying popups.
------
2T1Qka0rEiPr
Minor comment, but I'm pretty sure in Ariely's experiment he dropped _both_
prices by 1 cent (i.e. the Lindt became 14 cents), hence the drop was
identical, but this completely shifted the purchasing decisions.
------
vxNsr
One way to combat this mentally is to have set prices for things in your
head... ie the price you feel each commodity should cost. Don't buy things
that deviate to far from that price.
For example I feel a nice non-iron, fitted, button down shirt shouldn't cost
more than $20, so I only buy when I see them at, or around that price, BOGO or
not (and I need one/two). Same goes for lightning cables, I'm not paying more
than $5/(10ft)cable no matter what material it's wrapped in.
~~~
aembleton
Where do you get the idea that the shirt should cost $20? Is that from the
prices you've seen at retailers? The same ones that run BOGOF promotions.
------
ksec
I think we need to cite those Study were done in US. And the results are
pretty much US specific. From my experience ( Retail is big, so it might not
be applicable to every category ) Buy one get one free or anything with the
word "Free" works in US, Works in UK, Kind of Works in EU, Doesn't work in
Asia. Or At least most of the SEA, China, Japan, Korea etc. The consumer
mentality is completely different, and in reality the 50% discount price would
work better.
Having it completely "Free" as the spend $12 Beer for Free T-Shirt example
doesn't work in Asia as well. Because you would soon realise these market wont
pay a $12 product to get a "Free" T-Shirt. It only works in Japan and Korea,
and that also depends on the products.
Generally Speaking, Discount is better than Free with Strings attached in Asia
Regions. Pricing Strategy, Consumer Expectation and Product Selection is so
vastly in every Asian Market are part of the many reason why many large
Retailers failed in China.
------
ocdtrekkie
This article of course totally ignored the scenario where the buyer is aware
of the going rate for a given item, and either stocks up when a sale happens
or waits until the price point they want to pay. The article basically is
suggesting "deals are bad" instead of what it should be saying, which is
"don't fall for bad deals".
~~~
ianai
I agree, in the mane. But I think their point isn’t for people who target a
specific good or service but who instead suddenly enter a market (purchase
something they wouldn’t otherwise purchase) because of a BOGO deal.
Quote “”Retailers are often as guilty as you can get with manipulating price
of an item,” says Cohen. “You’re often charged a price that nobody has ever
paid; anything that’s free is just carved off the regular price.””
------
dazc
A friend once pointed out a deal on Coca Cola in one store where 2 bottles
were actually cheaper than one single bottle. I reckoned the expensive single
bottles were only there to convince you that you were getting a great deal?
Coca Cola is, I think, the classic example of a product where fair cost has
become irrelevant.
------
beefield
Funny the title calls economics. But the textbook economics with its utility
maximizing rational agents is utterly incapable even accepting the _existence_
of this kind of phenomena, much less analyzing...
~~~
Matticus_Rex
Ah, the mythical caricature textbook economics that hasn't integrated bounded
rationality or behavioral economics. Funny how I only find that in internet
comments and not actual classrooms past 101 (which is too basic to get into
this).
~~~
beefield
I may be too cynical, but I assume most MBA curricula do not contain bounded
rationality ot behavioral economics at least as obligatory subject, but are
happily restricting themselves to the world view of 101.
~~~
Matticus_Rex
Business programs LOVE behavioral econ. You get Nudge and cognitive bias stuff
starting in undergrad business classes.
And other than the econ classes, business classes aren't modeling behavior or
doing much theory work, so they aren't making assumptions like rationality.
~~~
beefield
Actually my comments were not that well thought from the beginning...
------
lancesells
I just read the book "Dollars and Sense" and recommend it if you're interested
in this topic. It's kind of surface level but it does help explain the ways
people spend and think about money.
------
skizm
JC Penny almost went bankrupt when they tried to stop doing sales all the time
and just charge fair prices. People want sales, even if the item isn't really
cheaper.
------
HNLurker2
This reminds me of that Elon Musk meme where you buy glasses by searching
"x".the glasses are free but the transportation is like twice the price to
male em
------
runyor
This can be generalized to: Every time someone offers you a "deal of a
lifetime" it's a deal that mostly benefits him. If it doesn't screw over a
third person it usually screws you, and if it screws over someone else it
still might screw you.
That's why the smart man will find deals himself. E.g. instead of waiting for
a prospect from a cars dealer that makes him a good offer, he will study what
makes a good second hand car, when the prices of second hand cars are lowest
and then he will go and make an offer to a caring owner of a car to become its
second hand owner.
------
jacknews
I thought it was known as BOGOF?
~~~
klyrs
Payless Shoes is particularly egregious -- they have huge signs that say
"BOGO" but then the fine print says... "buy one get one half-off." And their
employees are apparently trained to say "buy one get one" until you arrive at
the till.
| {
"pile_set_name": "HackerNews"
} |
Show HN: Gugodoc, my static web generator (for what it's worth ) - MeyerDumont
http://gugodoc.free.fr
======
terhechte
Funny, I'm almost done with a fork of a Clojure static web generator and I
really went into the opposite direction. What I wanted was to have one (or
several) html files as templates that I do not need to break up into parts and
that are not plastered with weird template tags. So I'm using Enlive to define
selectors and the generator uses theses selectors to fill the content into the
html structure. That makes it really really easy to edit the html for the blog
without having to go the html -> haml/whatever -> break up -> ... route. I
just relaunched my blog with this generator and it feels so liberating that I
can just work in html without having to do any kind of conversation afterwards
but the content is applied.
I'm currently extending the tests for the generator, and will release it then.
If anyone is interested, drop me a note and I'll notify :)
~~~
MeyerDumont
your solution sounds really good.
~~~
terhechte
I just published the generator. You can see the relevant HN post here:
[https://news.ycombinator.com/item?id=7103742](https://news.ycombinator.com/item?id=7103742)
------
prewett
Is there something like this that operates at a higher level? Unlike the
author, I'm ok with HTML (and I can't stand markdown), except that it's too
low level. I want to break things up by title, author, date, summary, content,
etc. and then generate the HTML by plugging it into a template, so that title,
date, and author become part of the heading at the top of the page and so on.
So something like
<title>...</title> (pretend this isn't already taken) <author>...</author>
<date>...</date> <summary>...</summary> ...
It seems like XSLT is what I want, except that I have to deal with a bunch of
XML nonsense. I could always write my own parser, but I keep hoping someone
already wrote something like this.
~~~
delluminatus
What you're talking about can be pretty easily implemented with template
inheritance that uses blocks/sections. Pretty much any templating language can
do this for you (usually static site generators use templating languages, so
by extension, static site generators will do this for you as well). For
instance, jinja2 is a common one for Python that I use for my website.
You can read about jinja2 template inheritance in their docs [1]. The gist of
it is that you can define a layout in HTML, with placeholders for specific
things like the title, author, content, etc. Then your actual post is just a
file that inherits from that layout template and only defines the relevant
blocks. So in "template pseudocode" your page might look like this:
{{ extends site_layout }}
{{ block title }} Title here {{ endblock }}
{{ block author }} delluminatus {{ endblock }}
{{ block content }}
<p>Content!</p>
{{ endblock }}
[1]: [http://jinja.pocoo.org/docs/templates/#template-
inheritance](http://jinja.pocoo.org/docs/templates/#template-inheritance)
------
roeme
I'm a big fan of minimalism.
I love markdown
I hate HTML
If you hate HTML, are you sure you should write something that outputs exactly
that?
~~~
ama729
> If you hate HTML, are you sure you should write something that outputs
> exactly that?
He probably mean to _write_ HTML.
------
rajeevk
How is this different from Octopress? In Octopress you can simply edit
markdown files and then generate html.
~~~
MeyerDumont
I don't know Octopress, this is just my tool and it's probably worst than all
the others but it fits my needs
~~~
chanux
Just for fun is a perfectly good reason for anything!
Also, I have saved a lot of time looking around for existing solutions than
just doing it myself. :)
------
simlevesque
Dans la section HTML and Bootstrap, la phrase suivante contient au moins deux
fautes : "But, of course, I discourage you fro doing this because, in my
opinion, markdwon files must try to be as lisible/raw/text only as possible."
~~~
MeyerDumont
merci !
------
aaren
where is the source code?
~~~
MeyerDumont
It's too ugly but I will probably try to clean it and put it on github soon.
~~~
aaren
I'm not going to run your binary if I can't see the source and compile it
myself!
~~~
MeyerDumont
I understand that. I will try to publish to source code very soon then.
------
L4mppu
Pretty much impossible to read on phone with that floating shit blocking your
view.
~~~
MeyerDumont
Thanks for the feedback, I will try to fix that ASAP.
| {
"pile_set_name": "HackerNews"
} |
Chrome improvements for a faster and more efficient web - t23
http://chrome.blogspot.com/2015/09/chrome-improvements-for-faster-and-more.html
======
Betelgeuse90
Cool. Waiting for more specific details following the previous announcements
about progress made in OS X for decreased CPU usage.
If Safari wasn't that annoying for me to use then I'd switch to it on OS X.
It's just smoother than butter compared with Chrome...
| {
"pile_set_name": "HackerNews"
} |
What its like launching my first SaaS - mundia
https://dev.to/afrocoderzm/what-its-like-launching-my-first-saas-2ic1
======
kevsim
Congrats on launching! The service looks really nice and professional.
One criticism though. It's possible to overstate the value of user feedback:
> We provide everything you need to learn from your users while saving you
> hundreds of hours by avoiding building the wrong things.
If you just build the things your users are asking for or voting for, you may
find yourself constantly correcting symptoms rather than attacking root
causes, which can actually cost you time, not save it. Henry Ford's quote
about building a faster horse comes to mind.
The founders of Pitch just published a good blog on the subject
[https://pitch.com/blog/why-you-should-develop-features-
peopl...](https://pitch.com/blog/why-you-should-develop-features-people-dont-
ask-for)
| {
"pile_set_name": "HackerNews"
} |
Ask HN: How did you improve your quantitative ability? - sadamznintern
I never took part in math competitions in middle or high school so I feel like I'm still pretty bad at problem solving, and it seems like a bottleneck to gaining better employment and compensation through technical interviews - how did you improve?
======
maxofnitems
You can either go the route:
1\. Discrete Math -> Algorithms
or
2\. Discrete Math -> Abstract Algebra
or
3\. Discrete Math -> Real Analysis
Discrete Math will put you in a mathematical state of mind whatever that
means. Discrete Math to Real Analysis (or Abstract Algebra) is like
weightlifting (and general body conditioning) to a sports discipline like
classical wrestling (or soccer).
Real analysis will teach you to be an opportunistic problem solver who rock-n-
rolls (street-fights) their way through problems.
Abstract algebra will turn you into a morosely formal, orderly and pedantic
systematizer and generalizer.
You want to be both a formalistic thinker and a flexible one.
For intro to math try [0] Infinite Decent Into Math by Clive Newstead / John
Mackey, [1] Book of Proof by Richard Hammack [2] Math Foundations of Computing
by Keith Schwarz (ALL LOOK TO BE FREELY AVAILABLE)
[0]
[http://www.math.cmu.edu/~jmackey/151_128/infdes.pdf](http://www.math.cmu.edu/~jmackey/151_128/infdes.pdf)
[1]
[https://www.people.vcu.edu/~rhammack/BookOfProof/](https://www.people.vcu.edu/~rhammack/BookOfProof/)
[2]
[https://web.stanford.edu/class/cs103/notes/Mathematical%20Fo...](https://web.stanford.edu/class/cs103/notes/Mathematical%20Foundations%20of%20Computing.pdf)
| {
"pile_set_name": "HackerNews"
} |
Is There a Social Media Tech Bubble? [infographic] - instakill
http://mashable.com/2011/05/29/social-media-bubble-infographic/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Mashable+%28Mashable%29&utm_content=Google+Reader
======
danohuiginn
I'm sorry, how is this supposed to work as an infographic? Multiple timelines
-- but they're not aligned next to one another, so there's no way to compare
them. The bottom level of each darkened (differently on each timeline) with no
explanation why.
It would work better as text, let alone with any of the dozens of more
suitable visualization options.
------
alain94040
They say Color's recent valuation is $41M, confusing valuation and money
raised. Usually, when you raise $41M, your valuation is higher :-)
------
jsmcgd
7 possibly overvalued companies don't make a bubble. During the previous
(actual) bubble there were many more companies with very high valuations and
with 0 revenue. Facebook, Twitter, Groupon, LinkedIn, Skype and Color could go
all go under. But it won't give people cold feet about investing in my over-
hyped, eyeball dependent, Web 2.0, social, video sharing, pet-orientated,
gamified, Groupon clone. Why? Because I'm not building this business and
neither is anyone else.
------
ignifero
There is also an infographics bubble.
| {
"pile_set_name": "HackerNews"
} |
Ask HN: Who wants to be hired? (April 2020) - whoishiring
Share your information if you are looking for work. Please use this format:<p><pre><code> Location:
Remote:
Willing to relocate:
Technologies:
Résumé/CV:
Email:
</code></pre>
Readers: please only email these addresses to discuss work opportunities.
======
SubseaEngineer
Location: Scotland
Remote: Yes
Willing to Relocate: Not at this time
Technologies: SolidWorks, Inventor, DesignSpark PCB, Mechanical Handling
Systems, Instrumentation.
Email: SubseaEngineering /at/ outlook.com
Mechanical Engineering Manager and instrument designer with prototyping, R&D
and critical system experience. Over a decade of working in underwater
instrumentation, including large projects and specialised instrumentation for
unique applications.
SolidWorks and Inventor CAD system fluent, extensive ISO9001 experience.
Regularly work with 3D printers and prototyping/small production run
manufacturing. Workshop facility for construction of equipment available.
Bulk of experience in underwater systems, including instrumentation and vision
systems for customers in unique applications and ROV systems. Offshore
experience in remote places, so I understand what it really means to have a
quality, mission critical piece of gear. Willing to work in most sectors,
especially R&D and small batch prototyping and production runs.
I dabble in many different types of tech and like to keep up with emergent
technologies related to the autonomous fields.
~~~
btotes
Can you post your resume/portfolio?
~~~
SubseaEngineer
Hello!
Probably best to drop an email at the above address, many of my clients are
quite strict about their confidentiality and I respect their need for that. It
would also allow me to give you a better idea of what work I have done that is
relevant to your particular requirements.
Stay Safe
SubseaEngineer
------
tobych
Location: Seattle area (USA)
Remote: Yes, at least 2 days/week
Willing to relocate: No
Technologies: Python, Flask, Sphinx, Django, Celery, Jenkins, Vagrant, Linux,
Sentry, Docker, EC2, Kinesis, JavaScript
Résumé/CV:
[https://www.dropbox.com/s/s3uswgf8rdtardg/TobyChampionResume...](https://www.dropbox.com/s/s3uswgf8rdtardg/TobyChampionResume.pdf)
Email: toby at toby champion dot com
LinkedIn:
[https://www.linkedin.com/in/tobych/](https://www.linkedin.com/in/tobych/)
GitHub: [https://github.com/tobych/](https://github.com/tobych/)
Recently finished working with Phyn's (IoT domestic and industrial water leak
detection) Data Science and Machine Learning team, from their Seattle office
and frequently their Torrance, LA headquarters. I was the sole software
engineer on the team, productionizing products ready to run on AWS.
Well-rounded, organized, experienced software engineer with a 30 years of
experience, a strong CS background and a passion for Python, continuous
integration and coaching junior developers. Enjoys building things and helping
others build things to solve difficult problems for ambitious enterprises,
big-thinking start-ups, intense political scientists and exhausted research
students. A clear communicator with strong writing skills, bountiful
perseverance and a gentle English manner.
~~~
sajforbes
> Students used a fake UNIX login screen to hack my account so they could
> steal my work.
Would you be interested in sharing with us what happened here?
------
nunoarruda
Front-End Angular Developer
Location: Europe
Remote: Yes, remote only
Willing to relocate: No
Technologies: HTML, CSS, Sass/SCSS, DOM, JavaScript, ES6/7/8, TypeScript,
JSON, AJAX, HTTP, Web APIs, RESTful APIs, Bootstrap, Angular, RxJS, NgRx,
Ionic, Angular Material, Wijmo, Karma, Jasmine, Protractor
Résumé/CV:
[https://nunoarruda.com/resume.pdf](https://nunoarruda.com/resume.pdf)
Email: [email protected]
I'm only interested in part-time permanent employment.
===
Hi, I'm Nuno, a Result-Oriented Front End Angular Engineer with a strong
technical skill-set, attention to detail, and 18 years of experience. I have a
passion for translating beautiful designs into functional user interfaces and
building great web applications.
I actively seek out new technologies and stay up-to-date on industry trends
and advancements. Continued education has allowed me to stay ahead of the
curve and deliver exceptional work to each employer I’ve worked for.
I've successfully delivered projects like a CSS UI library used by 17,000
employees, a mobile app that has 120,000+ users, and a web app serving over
100 million images. I've done frontend work for Adobe, Webflow, Bayer, among
other companies.
I'm originally from Portugal but I've been working remotely for the last 7
years for companies worldwide. I can be flexible in order to have overlapping
working hours with a distributed team.
------
dvt
SEEKING WORK | Los Angeles | Remote
I'm an expert engineer and data professional interested in consulting and
architecting data pipelines. At Edmunds.com, I worked on a fairly successful
ad-tech product and my team bootstrapped a data pipeline using Spark,
Databricks, and microservices built with Java, Python, and Scala.
These days, I work for a "new media" company you probably heard of and, over
the past year, I re-built an ETL Kubernetes stack, including data loaders and
extractors that handle >10,000 API payload extractions daily.
My area of expertise includes data interoperability with Facebook Marketing,
Facebook Graph, Instagram Graph, Google DFP, Salesforce, etc. That I'm a top-
tier developer goes without saying. I'm interested in flexing my consulting
muscle and can help with best practices, architecture, and hiring.
Would love to connect even if it's just for networking!
Blog: [https://dvt.name/](https://dvt.name/)
GitHub: [https://github.com/dvx](https://github.com/dvx)
Resume/contact: [https://dvt.name/resume/](https://dvt.name/resume/)
------
daneeveritt
Location: San Diego, CA
Remote: Yes
Willing to relocate: No
Technologies: PHP (Laravel, Laravel Dusk, PHPUnit), Javascript/Typescript
(ES5/ES6), React, React Native, Vue.js (minor experience), MySQL, Node.js, Go,
Docker, surface level AWS Ecosystem (EC2/S3/Cloudfront/OpsWorks/R53/ELB),
comfortable working knowledge of *nix environments
Resume:
[https://daneeveritt.com/resume.pdf](https://daneeveritt.com/resume.pdf) |
[https://github.com/daneeveritt](https://github.com/daneeveritt)
Email: dane āt daneeveritt dōt com
Project: [https://pterodactyl.io](https://pterodactyl.io)
([https://github.com/pterodactyl](https://github.com/pterodactyl))
I'm a full-stack developer with experience working on large PHP applications
and building with React and Typescript.
I built and maintain a large open-source game server management project,
Pterodactyl, with thousands of active installations and a comprehensive
installation guide. I am available for full-time work, either remote or in the
San Diego area.
------
kristopolous
Been programming for 26 years, professionally for 22.
Location: Los Angeles, CA
Remote: If needed
Willing to relocate: Want to with strong preference for outside the US.
Technologies: C, C++, PHP, Python, Javascript, embedded, iot, front-end web,
lots more
Resume: [http://9ol.es/resume.txt](http://9ol.es/resume.txt)
Email: [email protected]
The future is as unknown as it ever has been and we as technologists play an
important role in building it.
For the past 5 years or so I've been studying the business side of technology.
Crossing the Chasm, Innovators Dilemma, 4 Steps to the Epiphany, etc. I've
heavily annotated and studied over 100 texts on what, where, when, and why to
build, not just the how that I focused 2 decades on.
What's considered important in society has changed in the last 30 days and
hasn't yet stabilized. The future we were building toward is not the same and
tomorrow is resembling yesterday less and less.
This means currently we are awash in new opportunities that may be hard to
spot because they don't look like the old ones.
So if you're looking for a passionate experienced engineer who is looking to
work towards a better tomorrow, please reach out, I'd like to talk to you.
------
liujy
Location: San Francisco, CA
Remote: On-site (when that happens)
Willing to relocate: No
Technologies: Go, Java, PHP, Python, Postgres, Thrift, Docker
Résumé/CV: [https://linkedin.com/in/jeffrey-yuan-
liu](https://linkedin.com/in/jeffrey-yuan-liu)
Email: [email protected]
\--
New grad engineer. Recently laid off after a few months working full-time at
Thumbtack on the Partnerships team developing REST APIs and a scalable API
platform to unlock more opportunities for the company's long-term strategic
vision. I'm hoping to be able to bounce back quickly, work with some awesome
people, and continue learning, growing, and making an impact. Preferably would
continue to dig into scalable systems and lean more about the infrastructure
that enable that kind of scalability and velocity.
If anyone is looking to be connected to some great people, there's a whole
network of people who were laid off that I can connect you to including EPAD,
recruiting, operations, legal, etc. Please let me know at the email above if
you're interested.
------
raghavtosh
Location: New Delhi, India
Remote: Yes
Willing to relocate: Yes
Technologies: Python, C, Java, DevOps, VueJS, Technical Product Management
Résumé/CV: https://raghav.cc/files/CV.pdf
Website: https://raghav.cc/
Email: <mentioned in the CV>
\--
Hi, I'm Raghav. I am a generalist engineer, with a deep appreciation for
Product and Business.
There is no technology I am not willing to get my hands dirty with. As long as
the problem is interesting (or important), I am up for solving it.
In my current role, I have been leading a team of half a dozen excellent
people and we are working on niche SDR applications. I am looking for a fresh
challenge. If you have a role for me that requires both solving an engineering
problem and looking at the big picture, I'm your guy.
------
jonpurdy
Location: SF, fully equipped and experienced to work remotely
Remote: Yes
Willing to relocate: No
Technologies/Skills: Certified Scrum Master, Scrum & Kanban Methodologies,
Multi-team Coordination, Jira, Python, Containerization, Cloud Infrastructure,
Blockchain
Résumé/CV: [https://jonpurdy.com/resume-ats.pdf](https://jonpurdy.com/resume-
ats.pdf)
Work: [https://jonpurdy.com/work](https://jonpurdy.com/work)
Email: [email protected] (will respond from my real one)
I recently moved to SF with my wife (sponsorship NOT required). I'm primarily
a Technical Project Manager looking to help teams build software more
efficiently. I'm looking to move into a Technical Program Manager or Technical
Product Manager role.
I have worn many hats having worked for startups and small companies. I
started off building support workflows, tooling, and documentation for an
emerging telecom product. I moved into DevOps and infrastructure after that.
And in the past couple of years earned my Scrum Master certificate and took on
Project and Product Management roles. Have a look at jonpurdy.com/work to see
some of the projects I've built or worked on.
Aside from my technical skills, I have a deep understanding of the product
development pipeline and SDLC, balancing stakeholder requests with what is
technically feasible, and gathering user feedback to improve products over
time. Thanks to my education background, I can bridge technical and non-
technical teams, help team members improve and achieve their career goals, and
communicate succinctly and unambiguously.
Ideally, I'm looking for a SF Bay Area-based startup or growing company that
has built (or is close to completing) an MVP and is looking to scale the
development team's size and efficiency, technical infrastructure, product
documentation, and product support workflows. But I'm open to pretty much any
company, large or small.
Thanks and please email me if you have any questions or just want to chat.
------
peterbraden
Seeking contract work, or something really compelling.
Location: Zürich, Switzerland
Remote: Yes
Willing to relocate: No
Technologies: Full stack. Rust would be nice.
Résumé/CV: https://peterbraden.co.uk/resume/
Email: [email protected]
Experience with the full stack, from systems programming, up to product
management. I like hard, user focused problems with pragmatic solutions.
I'd planned to take some time off over the summer, but then a global pandemic
happened. Would love to engage on a short term project basis, but if you have
something amazing full time I'm willing to be tempted.
------
rpastuszak
\- Location: London, UK
\- Remote: yes, please!
\- Willing to relocate: yes (EU citizen)
\- Technologies: Javascript, Typescript, React, Redux, Redux-Observable, RxJS
(+ UniRx, RxJava), Node, PWA, React Native, Node (express, hapi, koa, etc...),
NoSQL (mongo, couchDB, dynamo, firebase), Unity, WebSockets/realtime, AWS,
serverless (Zeit now, serverless framework, etc...), Terraform, Docker,
Heroku, Zeit Now, C#, Java, Python, Swift, Cocoa, AR/VR (ARKit, ARCore,
Vuforia, Web) (please read the CV for more tech and case studies)
\- Résumé/CV: [https://sonnet.io/cv-2020.pdf](https://sonnet.io/cv-2020.pdf)
\- Email: [email protected]
~~~
containerds
Hey Rafal, we have a number of open roles at Protocol Labs that might be of
interest.Fully remote and FT -[https://jobs.lever.co/protocol?lever-
via=yNXJrpce8L](https://jobs.lever.co/protocol?lever-via=yNXJrpce8L)
~~~
rpastuszak
Wonderful, will check it out!
------
codekendo
Location: San Diego Remote: Yes, I have previous experience. Willing to
relocate: Not right now but open to the possibility at a later point in time.
Technologies: Javascript, React, Docker, Redux, React Native, Python, Flask,
Node.js, D3, PostgreSQL, SQL/NoSQL, Spark, Hadoop, Java, Ruby, PHP, Linux,
Apache, Mysql, CI/CD and so much more... Résumé/CV:
[https://linkedin.com/in/codekendo](https://linkedin.com/in/codekendo) (PDF on
request) Email:[email protected]
------
formalsystem
Role: Machine Learning Scientist, Software Engineer Location: San Diego
Willing to Relocate: Yes (US, UK) - US citizen
Technologies: Machine Learning, Python, Tensorflow, Pytorch, Julia, C#, Unity,
AWS, Node, SQL
Skills: math, optimization, physics, graphics, design
Resume:
[https://www.overleaf.com/read/wkbttymdcmqt](https://www.overleaf.com/read/wkbttymdcmqt)
Personal site: robotoverlordmanual.com
Email: [email protected]
Hi I’m Mark, I’m an Applied ML Scientist and Product Designer. I'm the founder
of yuri.ai where my goal is to make it really easy for game developers to
balance their games using Reinforcement Learning. I’m looking for a job
because the Lebanese banking system is collapsing and I’ll soon need income to
support my parents.
How I can help you:
I can write top notch documentation and can explain anything to anyone: My
book robotoverlordmanual.com is a visual and accessible robotics, ML and math
textbook with over 28000 monthly viewers. I’m very comfortable writing and
speaking.
I can manage your most complex projects: I was the BI lead when Microsoft was
selling its display ads business to AOL, I made sure Outlook AI efforts were
compliant. I’ve worked on projects with 100+ stakeholders and have
bootstrapped projects where I was the first engineer to 10 engineers.
I can turn your research into a product: I’ve done this with Yuri, I’ve done
this at Microsoft when I was working on a next gen email ranker and a part of
speech tagger and I’ve done this at NASA’s Jet Propulsion Laboratory when I
was setting up their computer security anomaly detection pipeline from scratch
I can setup your entire BI infrastructure and measure what matters: I’ve done
this for more than 10 teams at Microsoft. I will help you find and measure the
metrics that are most indicative of your product success.
I will also get along with your dev team: I have extensive science and
development experience and can tell the difference between realistic work and
sci-fi. I have extensive experience with tooling and research in BI, ML, RL
and game dev.
Please ask me questions!
------
brotar512
Location: Austin TX
Remote: Yes (not preferred)
Willing to relocate: No
Technologies:
- Microservices (w/Kafka distributed messaging), OOD, TDD, serverless, REST, applied ML w/Kubeflow and DVC
- Java (Sprint boot, Spock)
- Python (Pandas, Numpy, Flask, Tensorflow 1.15, Apache Beam)
- Javascript (ReactJS, Jest, Angular 1+2)
- SQL (PostgreSQL)
- Applied ML (Kubeflow Pipelines, DVC, Tensorflow 1.15, Jupyter)
- Other tools/frameworks (Git, AWS Lambda, SageMaker, EC2, DynamoDB, Jenkins, Kubernetes, Docker)
Résumé/CV:
[https://www.linkedin.com/in/ccotar](https://www.linkedin.com/in/ccotar)
Email: c døt cotar @ gmail
Hi, unfortunately my startup was recently impacted by the new economic climate
induced by Covid19, and I was recently included in a round of layoffs. I have
full stack development experience through most of my 8+ years of development,
mostly in Java using Spring boot and either Angular or ReactJS. My latest work
for about a year was applied ML using Kubeflow and DVC to transfer learn
Tensorflow 1.15 research models for use cases like object detection, pose
estimation, and instance segmentation. I would love to continue my pursuit in
applied ML but am also interested in software roles that are back end or full
stack using Java + Spring boot or Python.
Thank you for reading my post and I hope we can connect soon!
------
zelon88
Remote | On-Site | Full Time | DevOps | Domain Admin
Location: MA, USA
Remote: Yes
Willing to relocate: Within reason
Technologies: Full-Stack, PHP, JS, Python, DevOps, Opsec
Résumé/CV: https://www.honestrepair.net/HRProprietary/HRCloud2/DATA/ccf0a87f4178d2bd010f83e9fa6bdc3d85669382/.AppData/Shared/Resume_IT_12-31-2019.pdf
Email: [email protected]
As a software developer I maintain over a quarter-million lines of open-source
repositories in over half a dozen turing complete languages with the majority
of that being original code developed by myself.
[https://github.com/zelon88](https://github.com/zelon88)
As a network engineer I run my own Cloud network based on in-house Linux
servers that I built mostly from scrap parts.
[https://www.HonestRepair.net](https://www.HonestRepair.net)
Professionally I have a strong background with managing ERP systems, group
policies, active directory, firewalls/routers, security systems, DVRs, PBXs,
access controls, PLCs, ect... I can manage basically anything electronic on
any operating system. I started off with a career in machine operating and
manufacturing and eventually moved up to Production Control. Currently I
manage every facet of a complex enterprise network with a healthy dose of
DevOps, OpSec, and heavy machine repair sprinkled in for good measure.
I pride myself on wearing a lot of hats. Perhaps my strongest trait is my
affinity for learning.
------
rbolkey
Distributed team of 3 engineers with over 40 years of combined experience that
have worked together for 6 years. Our current contract is winding down. Open
to Contract or maybe FT.
Location: Austin, TX / Dublin, Ireland
Remote: Yes
Willing to relocate: No
Technologies: Java, JavaScript, Kotlin, AWS (you name it), Kafka,
Elasticsearch, Druid, Snowflake, Recommender Systems, Ad Tech
Résumé/CV:
[https://www.linkedin.com/in/richardbolkey/](https://www.linkedin.com/in/richardbolkey/)
Email: [email protected]
------
dtwhitney
Location: New York, NY
Remote: yes
Willing to relocate: No
Technologies: Full Stack and DevOps - JavaScript/TypeScript, Scala, Java,
PureScript, Haskell, React, Node.js, AWS, CloudFormation, Terraform
Résumé/CV:
[https://www.linkedin.com/in/dtwhitney/](https://www.linkedin.com/in/dtwhitney/)
Email: [email protected]
===
I'm a full stack engineer with lots of experience. I prefer functional
programming languages, but can work with anything. I'm happy with contract
work, temp-to-full-time, and full-time.
------
ryansmccoy
Location: United States
Remote: Yes
Willing to relocate: Yes
Technologies: Python (celery, flask/django, numpy/ pandas/scipy, sqlalchemy,
asyncio/multiprocessing/threading, others), Go, Javascript (Node.js, Jquery,
React), R, AWS, Azure, GCP, Hashicorp Terraform & Vault, Databases (SQL,
NoSQL, BigQuery, Redis, Cassandra, others), Message Queues (RabbitMQ/Celery,
ØMQ, Apache Kafka), Big Data (Apache Spark, Airflow/Kubeflow, Beam, Snowflake,
Dask), Machine Learning/Natural Language Processing (Sklearn, Tensorflow,
Pytorch, Gensim, NLTK, Spacy, ElasticSearch), Web Scraping
Résumé/CV: www.linkedin.com/in/ryansmccoy
Email: hn (at) ryansmccoy (dot) com
I've spent the last 13 years designing and building mission-critical software,
data, and cloud solutions for customers in the Financial Markets, including
Fortune 500 companies, Investment Managers, Hedge Funds, Venture Capital,
Private Equity, and Data Vendors.
I've successfully developed cloud based web apps, custom dashboards,
distributed financial data pipelines, low-latency and high-throughput market
data systems, natural language text analytics, software/data architecture
including micro-services, front, middle, back office automation, network
security/encryption, automated trading algorithms, quantamental process
automation, and ETL systems;
------
xelxebar
REMOTE | BACKEND ENGINEER / SYSOPS
Location: Hokkaido, Japan
Remote: Absolutely (have prior experience)
Willing to relocate: Unlikely
Technologies: Linux (sh, coreutils, *etc.*), shellcheck, bats, C, valgrind, gdb, radare
Interests: APL/J/K, Haskell, metamath, reverse engineering
Side projects: 8-bit TTL CPU, Makefile linter (*a la* shellcheck), J port of co-dfns[1]
Résumé/CV: wilsonb.com/cv.pdf
GitHub: https://github.com/xelxebar
Email: [email protected]
Professionally, my experience is mostly in backend and systems engineering.
Academically, my background is in math and model building. Personally, a
significant amount of my time has been spent tinkering with linux userspace.
From my GitHub profile, you can see a few (old) projects and several PRs that
I have authored. This should give a taste of my sensibilities regarding good
communication and code practices. Most of my personal repositories I host
personally at my website wilsonb.com. If interested, please let me know and I
can provide read access.
Just for fun and to get a flavor of my personality, here is a bit of what my
daily driver looks like:
OS: Void Linux
Window manager: bspwm (modular and tiling)
Terminal emulator: st
Mail User Agent: mblaze[0]
Browser: lynx and qutebrowser
[0]:[https://github.com/leahneukirchen/mblaze](https://github.com/leahneukirchen/mblaze)
[1]:[https://github.com/Co-dfns/Co-dfns](https://github.com/Co-dfns/Co-dfns)
------
oldboyFX
Location: Central Europe (EU, CET+0)
Remote: Yes, since the beginning of my career.
Willing to relocate: No, but I can visit often.
Technologies: React.js, JS/TypeScript/Babel, Node, Webpack, GraphQL, ESLint,
Cypress.io, styled-components etc.
Email: [email protected]
\---
I'm a seasoned web development expert with a knack for UX design. I specialize
in front-end(React), but also do back-end(Node).
I have extensive experience in architecting, building, and delivering large
custom-made web applications.
Over the last decade I helped several US/EU based clients build Airbnb-like
platforms, real-time GPS vehicle tracking suites,
healthcare/finance/construction apps, and more.
I mostly collaborate with tech companies, but also have a lot of positive
experiences assuming CTO-for-hire roles to work with non-technical founders.
• Read more on my website: [https://getivor.com](https://getivor.com)
• View recent project - Jira Clone (4,5k stars):
[https://github.com/oldboyxx/jira_clone](https://github.com/oldboyxx/jira_clone)
| Live demo: [https://jira.ivorreic.com](https://jira.ivorreic.com)
• Passion project from 2014 (100k monthly visitors):
[https://movieo.me/movies](https://movieo.me/movies)
------
herald_harold
Location: NYC
Remote: Yes
Willing to relocate: Yes
Technologies:Python (Numpy ,Pandas, Keras, cx_Oracle, PyMongo, Psycopg,
boto3), JavaScript (React, MaterialUI), C/C++ , Java, HTML, SQL(MariaDB,
Postgres,PostGIS), CSS
Résumé/CV: [https://drive.google.com/file/d/1Z45QxoPBqIAkp--jqI2FVPAa-
KI...](https://drive.google.com/file/d/1Z45QxoPBqIAkp--jqI2FVPAa-
KIeyBMG/view?usp=sharing)
github: [https://github.com/dahadaller](https://github.com/dahadaller)
Email: dahadaller ~at~ gmail ~dot~ com
Recent graduate and recipient of a Full-Tuition Merit Scholarship, in addition
to a Facebook "Secure the Internet" research scholarship. I’ve also had
experience coding production Data ETL projects at my internship in the
Operations Planning Division of a State Agency. Additionally, my senior
project was accepted by CyberNYC, Columbia Univerity’s Cyber Security-focused
startup accelerator. Being the youngest team in the accelerator, we have had
some coverage in the Wall Street Journal , where you can read more about the
project [https://www.wsj.com/articles/new-york-accelerator-picks-
firs...](https://www.wsj.com/articles/new-york-accelerator-picks-first-group-
of-cybersecurity-startups-11578574800)
I’m currently looking for full-time positions in Software Development and Data
Engineering. But, if you have a role you think might be appropriate for my
skills, I’m open to any and all opportunities.
------
ag_user123
Location: Europe
Remote: Yes
Willing to relocate: Not at the moment
Technologies: JavaScript, ES6+, React.js, Gatsby, Node.js, Koa(Express),
GraphQL, Redux, D3.js, Wordpress, React Native, Webpack, PostgreSQL,
Bootstrap, Heroku, Firebase, TypeScript and more.
Résumé/CV:
[https://drive.google.com/file/d/1ngTkTVeDaakyFxEmPyyqyMuKxD6...](https://drive.google.com/file/d/1ngTkTVeDaakyFxEmPyyqyMuKxD6MR_ja/view)
Email: [email protected]
I am a freelance full-stack web developer with over six years of experience
delivering software. I have worked for clients all around the world in many
different industries. I have delivered solutions for startups, digital
agencies and big companies, such as Apple. I have background in computer
science and am able to create everything from small business websites to
custom web applications.
Personal Website: [https://andrejgajdos.com](https://andrejgajdos.com)
LinkedIn:
[https://www.linkedin.com/in/andrejgajdos](https://www.linkedin.com/in/andrejgajdos)
Github: [https://github.com/AndrejGajdos](https://github.com/AndrejGajdos)
------
bluejellybean
Location: Ann Arbor, Michigan
Remote: Yes, experience working remote with last company
Willing to relocate: Not at this time but will be willing to fly back and
forth once the covid-19 situation settles down
Technologies: Full-stack web developer with most of my experience in
node.js/Typescript, React.js, custom front-ends, SQL(variety of flavors), AWS
Serverless, check out my resume for a complete list.
Résumé/CV: [https://alexbarkell.com/resume](https://alexbarkell.com/resume)
Email: alexbarkell @ g mail.com
Site: [https://alexbarkell.com](https://alexbarkell.com)
\-----
Both technology and computer programming are huge passions of mine and I have
been messing around with computers in some fashion from a very early age.
Business process automation is a particular aspect of software that I have
spent a fair share of time doing and enjoy it a lot. As for industry, I've
spent a fair bit of time in fin-tech... To name a few, video-game item market
investing, financial product marketing, crypto-currency(got involved in mining
back when bitcoin was under $10!), to credit union point of sale software. If
you're a smaller shop and think you can find value in the style of work I do,
please shoot me an email, I'm happy to chat!
------
stirner
Location: Los Angeles
Remote: Yes
Willing to relocate: Can relocate next year if necessary
Technologies: Go, C, Rust, Swift/iOS, JavaScript, HTML/CSS
Résumé/CV: Hosted on my LinkedIn profile in the Featured section
Email: willalexander at alumni usc edu
GitHub: [https://github.com/wwalexander](https://github.com/wwalexander)
LinkedIn:
[https://www.linkedin.com/in/wwalexander/](https://www.linkedin.com/in/wwalexander/)
I’m a developer with experience in front end web development, backend and
systems development in Golang, and iOS development. I have built a self-hosted
music streaming server using Go and FFmpeg, a dynamic DNS system based on the
DigitalOcean API, an optimized Rust translation of the UNIX password hashing
routine crypt(3) for a password cracker, as well as many other tools focusing
on simplicity, correctness, and interoperability. I have worked with iOS and
SwiftUI, and led the development of a Python toolkit for hijacking drones at
my capstone course at university. I have also helped a small business automate
tasks to save time and avert technical issues, including a system for sorting
packing lists by warehouse location to improve the ease and efficiency of
shipping orders.
I am a fast learner and I love building solutions that get to the core of a
particular problem or system. I was recently unemployed due to COVID-19 and
would love to talk if you think my skill set could be of use for your
business!
------
zacsmith
Location: Hamilton, New Zealand (GMT +13)
Remote: Yes (required). But can travel post covid-19
Willing to relocate: No
Technologies: Node.js, JavaScript, C#, SQL, Redis, Azure, GCP, Kubernetes
Resume:
[[https://www.linkedin.com/in/zacsmithnz](https://www.linkedin...](https://www.linkedin.com/in/zacsmithnz\]\(https://www.linkedin.com/in/zacsmithnz\))
(or email me for a pdf)
Email: [[email protected]](mailto:[email protected])
I'm an American citizen based in New Zealand, looking for a remote engineering
role.
I'm a full stack engineer / generalist that has 15+ years industry experience.
I have deep experience with Node.js and .NET, but I'm passionate about solving
problems with any technology and would jump at the opportunity to work with a
new stack. I can wear many hats - engineer, leader, mentor, agile coach. I'm
comfortable driving a roadmap and working to deadlines. I have more than 7
years experience working remotely. I've worked for early stage startups
through to large fortune 500 companies.
Living in New Zealand, I'm effectively only 3-5 hours away from the west coast
of the USA. Plus, due to the exchange rate and market differences, I can offer
significant savings on salary.
------
Fej
Location: NYC metro area/NJ/New Jersey/NY/New York (US)
Remote: Yes, physical presence would be preferred in the future once the
present crisis has passed
Willing to relocate: no
Technologies: HTML5/CSS3/ES7 (JavaScript), Python, Java, C
Email: j at the domain immediately below
Résumé: [https://fej.io/resume](https://fej.io/resume)
A bit more info: [https://fej.io/about.html](https://fej.io/about.html)
GitHub: [https://github.com/nuclearfej](https://github.com/nuclearfej)
Recently graduated from the Stevens Institute of Technology in NJ, right next
to NYC - CS bachelor's degree with a minor in philosophy. Worked with Node.js,
Vue.js, and Postgres in the web ecosystem, plus a bit of PHP and React; I use
Python for everyday scripting and a heavier language (C++ or Java) for larger
tasks. I'm currently working with a professor on writing a mobile (responsive)
version of an existing web app and fixing legacy PHP code.
Always excited to try new languages, frameworks, methodologies - you name it.
I love to learn new things and branch out.
Serious recruiters also welcomed.
Please don't hesitate to leave a comment with any questions. Thank you for
looking.
I am a citizen of the US.
------
khirana1
Location: United States Remote: Yes
Willing to relocate: Yes
Technologies: C++, Java, SQL, SAS, Python, R, MATLAB, MYSQL, HTML, CSS,
Tableau, Clustering, Regression, MS SQL Server, My SQL, PL/SQL, MS Access,
MongoDB, KPI Dashboard Software: Microsoft Office Suite (Word, Excel,
PowerPoint, Access), clustering, Product Strategy and RoadMap
Résumé/CV:
[https://docs.google.com/document/d/1S1SBylqXl_DdweiceLPa2uUN...](https://docs.google.com/document/d/1S1SBylqXl_DdweiceLPa2uUNxPJBdP5f/edit?dls=true)
Email: [email protected]
I have a strong background in Business Intelligence and core skills include
SQL, Tableau, ETL, Redshift, Excel, Hive, Data analysis, and validation.
Please let me know if there are any openings or if you can connect me with
recruiters who are actively looking for candidates in the field of analytics.
Please help this post to reach out to potential recruiters by engaging in this
post from small business websites to custom web applications.
LinkedIn: linkedin.com/in/kiran-hiranandani
Github: [https://github.com/](https://github.com/)
------
nbrochu
Location: Montreal, Canada
Remote: Yes (Exclusively in the current circumstances; Open to on-site later)
Willing to relocate: No
Technologies: Python, Web (Backend & Frontend), Data (ETL, Processing, Search,
Dashboards), Image Processing, Computer Vision, Machine Learning,
Reinforcement Learning, GUI (Qt)
Résumé/CV: [https://github.com/SerpentAI](https://github.com/SerpentAI)
Email: On my Github page
12 years in the industry; Mostly in startups and R&D departments. Spent the
last 2 working on my own projects / research following an acquisition. In that
time, I authored the Serpent.AI framework (streamed it on Twitch), released a
handful of Python packages and worked on a few curios (e.g. custom style
transfer implementations, auto-painting application with NumPy and OpenCL).
I was planning to return to the working world in the later half of 2020 but
with the COVID 19 situation, I figure it's wise to start considering it now.
I'm a pretty collected, friendly person; Competent and professional. I prefer
working in smaller teams / companies (more hats to wear, closer to product)
with insightful and good-natured colleagues. I'm alright with freelance too if
you don't have payroll in Canada.
------
dotancohen
Location: Israel
Remote: Yes, preferred
Willing to relocate: No
Technologies: Python, Linux, PHP, MySQL, most major frameworks
Résumé: https://dotancohen.com/DotanCohen-English.pdf
Email: hackernews splat dotancohen spot com
Now is actually a terrific time to hire me due to the Coronavirus lockdown.
I am an experienced software developer who works well in teams and on my own.
I am often praised for my ability to quickly come up to speed with new
technologies, and often find myself as the fix-it guy for people that I work
with.I love to break routine and work my way through a difficult problem.
Others often rely on me to debug their must frustrating bugs, which I enjoy. I
have experience building CRM, CMS, and other business application software
both from scratch and in popular frameworks. I follow industry best practices
and ensure that the systems I write are secure and maintainable. I have
planned and developed new systems, maintained legacy systems, and led teams
which have done so. Software development is not only my profession, but also
has been my hobby since childhood. I enjoy work and always arrive with a happy
attitude.
------
smosin
Location : Moscow, Russia
Remote : Yes
Willing to relocate: Yes, to Switzerland, Germany, UK, Sweden, Canada, US
Technologies : Python, Databases (SQL, Postgres, MySQL, Mongo), Machine
Learning (scikit, pandas/numpy, Tensorflow), Web dev (Django, Flask, Tornado),
Git, AWS, Docker
Résumé/CV : [https://bit.ly/serge_mosin](https://bit.ly/serge_mosin)
Email : [email protected]
Video introduction :
[https://youtu.be/mlvkNYo_chM](https://youtu.be/mlvkNYo_chM)
Linkedin :
[https://www.linkedin.com/in/smosin](https://www.linkedin.com/in/smosin)
Github : [https://github.com/Greyvend](https://github.com/Greyvend) ,
[https://github.com/Databrawl](https://github.com/Databrawl)
I have a Ph.D. in Mathematics/Computer Science. I have a unique blend of
Software Engineering and Data Science experiences that allows me to both
design and implement ML models as well as develop code infrastructure around
them and orchestrate deployment process.
------
rasikjain
Location: Greater New York (US Citizen)
Remote: Yes (Remote Only)
Willing to relocate: No
Technologies:
• Web: ReactJs | ES6/7 | TypeScript | Redux | Node.js | Express.js | AngularJs
| HTML5 | Bootstrap
• Microsoft: .NET Core | C# | Asp.Net MVC | Web API | Linq | Entity Framework
• Data: SQL Server | NoSQL | MySQL | MongoDB | Redis | CouchDB
• Cloud: AWS | Azure | Docker | IAM | S3 | EC2 | SQS | RDS | Aurora | DynamoDB
• Packages & Tools: Axios | GraphQL | Redux | WebPack | Babel | NPM | Git |
Jenkins | Splunk | SumoLogic | Jira | Sitecore
Email: jainrasik [at] gmail.com
Résumé/CV:
[https://www.rasikjain.com/resume/](https://www.rasikjain.com/resume/)
Stackoverflow: [https://stackoverflow.com/users/1993944/rasik-
jain](https://stackoverflow.com/users/1993944/rasik-jain)
LinkedIn:
[https://www.linkedin.com/in/rasikjain/](https://www.linkedin.com/in/rasikjain/)
Github: [https://github.com/rasikjain](https://github.com/rasikjain)
ABOUT: Experienced Software Engineer & AWS Certified Solutions Architect with
experience in FULL-STACK applications in React.js / TypeScript / C# / AWS /
Cyber Security. Worked in different roles dealing with Product Development,
Solution & Enterprise Architecture, Security & Cloud.
------
luizfelberti
Location: São Paulo, Brazil
Remote: Yes, but also ok with working on-site
Willing to relocate: Yes, and also in the process of getting EU citizenship
which might facilitate the process (but no ETA on that yet). I'm also ok with
relocating to NA.
Experience:
\- Currently Lead SRE at a healthcare startup, working on Platform
Engineering, focusing on our cloud architecture's security and compliance
aspects because we store a lot of sensitive patient information;
\- 3 to 4 years of AWS experience, but prefer GCP by a mile;
\- Solid experience with Systems Engineering & Architecture, especially
distributed systems;
\- Good background of close interaction with Data Science teams, and helping
raise the bar when it comes to putting things in production;
\- Passionate about Programming Language Theory, compilers, and the more
formal/philosophical aspects of Computer Science;
\- Previous experience with managing people and projects, with excellent
reviews and feedback from my peers;
\- Looking for Tech-Lead or similar positions in areas of R&D, Platform, or
SRE, and to help with pushing forward strategic projects of high technical
difficulty;
Résumé/CV & Contact:
[https://www.linkedin.com/in/luizberti](https://www.linkedin.com/in/luizberti)
------
itsarobin
Location: Longmont/Boulder CO
Remote: Yes — ideally
Willing to relocate: no
Technologies: React, JavaScript, TypeScript, Python, PHP, WordPress, Docker, HTML/CSS, linux, bash
Résumé/CV: https://github.com/itsarobin/resume/blob/master/readme.md
Email: robin.fisher.co [at] gmail.com
—————
Versatile software engineer with extensive experience working directly with
creatives and in creative environments. Much of this experience is in building
web solutions as a full stack developer. As such, I have learned to gladly
dive into any technology if it's what's needed for the job at hand.
I'm equally comfortable working solo or with a team and I am interested in
expanding my leadership experience.
My ideal next role would be a high impact position in a small organization,
preferably related to a social/common good initiative. I would be interested
in/capable of web, native mobile, and interactive/immersive display/experience
development. However, I am always looking for new/different ways to apply my
skills, so feel free to contact me about roles outside of those disciplines.
------
kunjan_aggarwal
Location : Gurgaon, IN seeking relo to Canada or Singapore
Remote : Yes, for some time
Willing to relocate: Only to Canada or Singapore
Technologies : Java, Android, Node.js, SQL, NoSQL, Javascript, C/C++, AWS, Bash, Jenkins. Familiar with Python, Go.
Résumé/CV : https://bit.ly/kunjan_resume
Email : [email protected]
Patent : https://pdfpiw.uspto.gov/.piw?PageNum=0&docid=08868506
Linkedin : https://www.linkedin.com/in/kunjan-aggarwal/
Github : https://github.com/kunjan-a
Generalist with masters in computer science and 8+ years of professional
experience building internet based software products from the ground up (both
for enterprises and end users).
Mostly worked in startups in fast-paced development environment, wearing
multiple hats from front-end development (Android, Java, Actionscript,
Javascript, C++, HTML/CSS) to back-end development (Java, Node.JS,
Microservices, JSP), building automated test suite (Python, Perl) and finally
handling CI/CD pipelines (AWS/Jenkins).
Have been actively involved in design stages and have seen through entire
product life cycles with products failing, being pivoted multiple times and
then finally becoming successful consumer/enterprise applications e.g.
[https://evolphin.com/](https://evolphin.com/) ,
[https://flock.com](https://flock.com) ,
[https://www.ringo.co/](https://www.ringo.co/)
Looking for sponsored relocation to Canada or Singapore.
------
kgritesh
Location: India Remote: Yes Willing to Relocate: No Technologies: Python,
Golang, JS, React, Node, Android, Kotlin, Typescript, Ansible, Terraform,
Docker Resume/CV:
[https://vertexcover.dev/static/resume-030f4767ed5ea7a3cb5829...](https://vertexcover.dev/static/resume-030f4767ed5ea7a3cb582962dbf1b292.pdf)
Personal Site: [https://vertexcover.dev/](https://vertexcover.dev/) Email:
[email protected] Github:
[https://github.com/kgritesh](https://github.com/kgritesh)
Hello I am Ritesh, a full stack engineer with 10+ years of experience as well
as 7+ years of experience leading remote engineering teams. I have cofounded
couple of startups in the past and have proven record of solving challenging
technical problems and building great products.
------
aaai
Senior Software Engineer with 7+ yrs experience, looking to do more _machine-
learning engineering_ and _data-science engineering work_ :
Location: Bucharest, Romania
Remote: Y
Willing to relocate: N
Technologies:
- OOD / SOLID, functional-programming principles, Microservices, REST APIs, TDD
- Languages and Frameworks:
+ Python (5+ yrs xp):
* Django, Flask, FastAPI, aiohttp
* scikit-learn, Pandas, TensorFlow (2.x)
+ Node.js
+ Other: SQL, React
- Machine-Learning & Data-Science:
+ basic DS w/ Pandas & related tools
+ classic supervised-learning and clustering (GMLs, SVMs, RFs, Bayesian)
+ deep-learning (w/ Keras/TensorFlow): dense-NNs, conv-nets, LSTM RNNs
+ basic NLP models
- Cloud & DevOps: AWS (EC2, RDS, EMR), Google Cloud (Compute, SQL), Docker, Linux/Debian
- Tools: Git, Bash, Jupyter/iPython
Résumé/CV: [https://www.linkedin.com/in/andrei-
anton/](https://www.linkedin.com/in/andrei-anton/), please email me for a more
readable Resumé!
Email: [email protected]
------
Jane0617
Location: San Francisco Bay Area, CA
Remote: Yes
Willing to relocate: No
I am seeking an entry-level data analyst or data scientist position. I’m
passionate about data and extracting value from data, and good at advanced
analytics skills and marketing campaign (funnel analysis and cohort analysis).
Also, I am very curious, detail-oriented, fast-learning, problem-solving and
proactive.
Technologies: R, SAS, MySQL & PostgreSQL, Python, Tableau, Power BI, GitHub,
Excel, PowerPoint, LaTeX, EViews, SPSS, MapInfo
Skills: Theory of Point and Interval Estimation and Hypothesis Testing,
Bayesian Methods, Experiential Designs (ANOVA, ANCOVA, AB testing, Multiple
Comparisons and Latin Square Designs (LSD)), Linear Regression, Machine
Learning (KNN, Logistic Regression, Naïve Bayes, K-means Cluster, SVM,
Decision Tree, Random Forest), Data Visualization (ggplot2, Tableau, Seaborn),
Deep Learning (Keras, TensorFlow, RNN, LSTM, CNN), Natural Language Processing
(Sentiment Analysis, N-grams, TF-IDF, Topic Modeling), Advanced SAS (SQL and
Macro), Advanced Statistical Theory (MLE, LRT, Monte Carlos), Data Synthesis,
Data Pipeline, Data Mining, Data Wrangling, Data Visualization, Statistical
Modeling, Machine Learning, Regression-based Models, Hypothesis Testing, Text
Mining, Cohort Analysis
Résumé/CV:
[https://drive.google.com/file/d/1K6hbKv6Go8fv5QSpANJoRsoVDtA...](https://drive.google.com/file/d/1K6hbKv6Go8fv5QSpANJoRsoVDtAhdoBJ/view?usp=sharing)
Email: [email protected]
Github: [https://github.com/JaneLiu0617](https://github.com/JaneLiu0617)
------
Kliment
Location: Cologne, Germany
Note! Not looking for full time positions - I only take on project work.
Remote: Yes, strongly preferred
Willing to relocate: No
Technologies: Embedded C++, Embedded C, Python, Electronics (design, layout,
prototyping, testing), 3D printing, electromechanical and robotic design and
prototyping
Résumé/CV: Email if needed
Email: kliment at 0xfb.com (yes, with a zero)
IRC: Kliment on the freenode network
I do custom electronics, robotics, and embedded software development - I
specialize in quickly turning ideas into prototypes. I've built custom
automation equipment for chemistry labs, sensors that are in use in
household/utility applications, control circuitry for construction equipment,
3d printing electronics, data acquisition equipment. No project too small. Few
projects too large. Deep discounts for open source hardware work.
I would also be happy to come over (anywhere in Europe) and teach any of the
above skills to a small group of interested people. I've taught courses in
electronic assembly (SMD), 3d printing (building/using printers, iterative 3d
model design using programming) and robot design and construction. I've taught
courses at several universities, hackspaces, company events and conferences.
------
virtualritz
Location: Berlin, Germany Remote: Yes
Willing to relocate: Depends on destination/attractivity of job
Skills: Everything visual – 3D, graphics design, typography, illustration,
digital imaging, UX, mapping/2D & 3D maps.
Software development – from system level to apps. Rust, C/C++, Python, Lua,
assembly, etc.
VFX – pipeline end-to-end, on-set supervision, cinematography, blocking/previz
of both VFX and non-VFX shots, specifically, rendering, shader writing,
lookdev & lighting, RenderMan, 3Delight, OSL, RSL.
Algorithmic/generative/procedural techniques for image & asset production.
3D printing, rapid manufacturing, -prototyping, product design & -engineering
for high end furniture and interior design.
3D DCC plug-in software development for various platforms and various APIs
(Maya, Houdini, AfterEffects, NSI, Ri, etc.)
Leadership – co-founded & ran a production company and two start-ups. Managed
a team of ~80 people in the IVI space at a multi national for five years;
freelancing since a bit over a year now.
Résumé/CV:
[https://www.linkedin.com/in/moritzmoeller/](https://www.linkedin.com/in/moritzmoeller/)
Email: [email protected]
------
mjgs
Location: Currently South East Asia (UTC+7)
Remote: Yes
Willing to relocate: Yes, happy to relocate to same city as business or just
to a more convenient timezone. I am British/Irish.
Technologies:
\- Front-end: Javascript Revealing Module Pattern, JQuery, Bootstrap, Static
Site Generators
\- Back-end: NodeJS, ExpressJS, MongoDB, Mongoose, PassportJS, Mocha, Async,
Joi, Webhooks, Message Queues, Nginx, Redis, Linux, Git, Bash
\- Cloud: Amazon Web Services, Digital Ocean, Letsencrypt, Mailgun, Stripe,
Netlify
Résumé/CV:
[https://www.linkedin.com/in/markjgsmith](https://www.linkedin.com/in/markjgsmith),
email me for my complete up to date CV
Email: [email protected]
I'm a Senior Web Developer with 5 years experience building web based
applications, APIs, and integrating cloud services, and with an 8 year
background in building file data ingest pipelines for Fortune 500 companies in
the Media and Entertainment industry across the EMEA region. 5 years
experience working remotely.
I'm looking for both full-time and/or contract work, and currently available
for hire.
Website: [https://markjgsmith.com](https://markjgsmith.com) \- social medias,
github, etc
------
zakjan
I'm an independent consultant / fullstack webapp engineer with >10 years of
professional experience, specializing in data visualization, graphs, maps. I'm
looking for short to medium-term work. Especially in graphs, I have
significant experience with Neo4j graph database, Linkurious Ogma, Keylines
and yFiles visualization libraries, I can provide support for them. I'm a
frequent open-source contributor. Currently I'm working on a Tableau extension
using yFiles. My university background is in computer security.
Location: Prague, Czech Republic
Remote: Yes, experienced
Willing to relocate: No, but open to travel when it's possible
Technologies: JavaScript, TypeScript, Java, R, Shell; Docker, Kubernetes;
React, Vue, Angular; Three.js, PIXI.js, WebGL; Neo4j, Linkurious Ogma,
Keylines, yFiles, Sigma, Vega, Cytoscape, d3; Leaflet, Mapbox GL
Résumé/CV:
[https://www.linkedin.com/in/zakjancz/](https://www.linkedin.com/in/zakjancz/)
Public profile: [https://zakjan.cz/](https://zakjan.cz/) (links to GitHub,
Medium and others)
Email: [email protected]
------
diogoreis
Java Full-stack or Backend engineer
CONTRACTOR only!
More than 11 years of full stack Java experience, mostly with Spring and
Angular 2+ on microservices architecture. Hands-on experience with
architecture design and development of highly available and scalable systems
over AWS (or Openshift), Netty, Kafka, Redis, Spring Cloud Netflix stack. Team
leadership and mentoring skills, with strong sense of ownership.
Location: Vancouver, Canada
Remote: Yes, only
Willing to relocate: No
Technologies: Java (11+), Spring boot/cloud (netflix stack), Netty, Angular
2+, Microservices, AWS, Openshift, Docker, Kubernetes, Kafka, Atlassian stack
(Jira, Fisheye, Bamboo, ...), TDD, test frameworks (jUnit/Mockito/PowerMock),
message brokers (Kafka/ActiveMQ/SQS), SQL, NoSQL and in-memory databases
(Oracle, MySQL, PostgreSQL, Mongo, Aurora, Redis), CI/CD pipeline (Jenkins),
Avro, Apache Thrift.
Resume/CV:
[https://www.linkedin.com/in/diogofacin/](https://www.linkedin.com/in/diogofacin/)
Email: diogoreis.ca . gmail . com
I can easily learn new techs if you need something specific in mix with my
expertise.
Feel free to add me on LinkedIn or send me an email :)
------
justinlloyd
Location: Los Angeles, CA
Remote: Yes
Willing to relocate: May consider Oregon or Washington state for right
opportunity. London, UK possibly. Toronto, CA possibly.
Legal to work in US and UK.
Technologies: Augmented Reality, Virtual Reality, Machine Learning, Machine
Vision, C/C++, Golang, TensorFlow, Python, PyTorch, Neural Networks,
Artificial Intelligence, C#, Kotlin, Ruby, Java, Docker, Git, Gradle, mySQL,
AWS, Linux, macOS, Windows, iOS, Android, Message Queues, Embedded, Firmware,
CI/CD,
Currently full-time employed. Looking for something new and different.
Masters Machine Learning (in progress), Masters Computer Science in Software
Engineering, Masters Business Administration, Masters Project Management,
Masters Entrepreneurship/Marketing
Bachelors Computer Science, Associates Computer Science, Associates
Electronics
Diplomas in Culinary Arts (Baking & Pastries), Graphic Design, Mathematics,
Photography, Project Management, International Business Law, Tax Law,
Intellectual Property Law, Economics, Accounting.
Résumé/CV:
[https://linkedin.com/in/justinlloyd](https://linkedin.com/in/justinlloyd)
EMail: [email protected]
------
Abdur91
SEEKING WORK.
Location: Lahore,Punjab,Pakistan
Remote: Yes.
Willing to relocate:Yes(After COVOID-19 situation is over)
Technologies: angular JS, angular, es6, react, redux, webpack, html5, css3,
sass, scss,python, Django, building restful api’s, git, grunt, mysql,
postgres, redis, mongo, firebase, aws, heroku,vagrant,Flask,numpy,scipy
Email:[email protected]
Linkedin:[https://www.linkedin.com/in/abdur-
rehman-8281284a](https://www.linkedin.com/in/abdur-rehman-8281284a)
profolio:[https://talent.hubstaff.com/profiles/abdur-
rehman/portfolio](https://talent.hubstaff.com/profiles/abdur-rehman/portfolio)
blog :[https://medium.com/@abdur91](https://medium.com/@abdur91)
As a experienced full stack web developer having 4 years+ experience in
multiple technologies,My main experience lies in developing modern web
applications,preferably in angular framework with backend in python mainly.
Having delivered many projects successfully, I know what it takes to build,
lead, grow and maintain a web application
------
blcksmth
Location: Los Angeles, US
Remote: Yes, and have previous experience working remotely
Willing to relocate: Open to the possibility
Technologies:
* Proficient: React, JavaScript, TypeScript, Node, Redux, HTML, CSS, SASS, Express, Webpack, Babel, AWS, Docker, Git, create-react-app, styled-components, GitHub, Jest
* Developing proficiency: WebGL, Three.js, Next.js, Bulma
* Previously used/Misc worth mentioning: Ruby, SQL, Ruby on Rails, MySQL, PostgreSQL, MongoDB, Relay, GraphQL, JIRA, Lerna, CircleCI, npm/yarn
Email: andrewrkowalczyk [at] gmail [dot] com
Personal Website: andrewkowalczyk.com (résumé/LinkedIn on my website)
\----------------------------
I'm a full stack software engineer with ~5 years experience developing full
stack applications in the JS ecosystem. If you need React work done, chances
are I can help!
My experience includes building responsive and performant user interfaces
using React/Redux from designs or from scratch as well as creating robust APIs
using TypeScript/Node.
Some other things I enjoy: modernizing codebases using tools like ESLint and
Prettier, autogenerating documentation, optimizing build times in CIs,
refactoring code, adding tests.
------
morenoh149
SEEKING WORK | New York, NY nyc | Remote or onsite in NYC Software Engineer
experienced building Tech companies. Proven track record as a technical
contributor, agile project manager and managing outsourced teams.
Have worked at Startups and large companies. Comfortable eliciting
requirements, writing specs and developing the solution on time⏱⏱⏱⏱⏱. Have
worked fullstack, mobile, devops, conversion funnel optimization and machine
learning. Developed software used by thousands of paying customers Javascript
(React Native, Node.js) Python (Django, tensorflow, ml-engine) Ruby on Rails,
Android Java, iOS apps, Go, SQL (mysql, redshift, postgres), experienced
translating high level requirements into data models (information systems)
OLTP and OLAP variants, have developed ETLs using aws glue and ec2 running
python, have web scraped with scrapy and proxies on scrapinghub, and cloud
(AWS, GCP, Heroku, Docker). Industries: Foodservice, Clover POS, Healthtech
(HIPAA), Fintech ¥¥¥¥, ECommerce
[email protected]
[https://harrymoreno.com](https://harrymoreno.com)
------
braunshizzle
Location: Ontario, Canada
Remote: Yes
Willing to relocate: No
Technologies: PHP, Laravel, Laravel Spark, Laravel Forge, Javascript, jQuery,
Vue.js, Node.js, HTML, CSS, MySQL, AWS, WordPress, Linux, Vagrant, Docker,
Redis, SASS, LESS, Web APIs, RESTful APIs. (Experience with many Integrations
& API's)
Résumé/CV:
[https://linkedin.com/in/braunson](https://linkedin.com/in/braunson)
Website: [https://braunson.ca](https://braunson.ca)
Linkedin: [https://linkedin.com/in/braunson](https://linkedin.com/in/braunson)
Email: braunson [at]] braunson [[dot] ca
GitHub: [http://github.com/braunson](http://github.com/braunson)
I'm a developer with 15 years experience as a designer and full stack
developer and have managed small-med teams. I've run my own agency for the
past 11 years working with small businesses to F500 companies on a variety of
projects. Currently looking for a position with a focus on Laravel/PHP in any
industry.
------
adamjroth
Location: Connecticut, USA
Remote: Yes (15 years remote: efficient, productive and highly available)
Willing to relocate: For the right position; remote w/ occasional travel much
preferred
Open to FT or PT, freelance projects, development work, source code audits,
reworking codebases left in poor shape. Specializing in Rails & React Native,
Node, React, Javascript.
Technologies: React Native (core contributor), React, Ruby, Ruby on Rails,
JavaScript, Perl, Objective-C, Java, Swift, C, C#, Python, Node.js, Express,
PHP, GraphQL (Apollo) Mobile Development: Native: iOS / Xcode, Android /
Android Studio, Hybrid: Cordova/Ionic, HTML5 / Canvas,
CreateJS/ImpactJS/Phaser, Flux (Redux, Alt.js, Mobx), MySQL, PostgreSQL,
MongoDB, Firebase, RSpec, Cucumber, Selenium, Mocha, Jasmine, Sphinx, Solr,
Lucene, Elastic Search, AWS (S3, EC2, Lambda, Amplify, RDS, etc), Linux,
Apache, Git / GitHub workflow, Dev Ops, Heroku, JIRA, Confluence, BitBucket,
MongoDB
Full stack & mobile software developer with over 15 years of professional
experience architecting and building a wide range of products on web and
mobile platforms using diverse languages and tools.
Experience in all phases of software development: architecting solutions from
the ground up (from concept to shipping), reworking/rebuilding/refactoring
existing projects (those left in poor shape, or reliant on outdated
libraries), and contributing to existing modern codebases.
Resume:
[https://docs.google.com/document/d/199KfsZXtPBEq60eCXIJxKlj9...](https://docs.google.com/document/d/199KfsZXtPBEq60eCXIJxKlj9fpNKpPAuPqOku19HqK0/view)
Email: adamjroth[at]gmail.com
------
SamWhited
Location: Atlanta, GA
Remote: Yes
Willing to relocate: No
Technologies: Go, Rust, Docker/containerd, scalable systems, XMPP, real-time communications, event sourcing and message buses, etc.
Résumé/CV: available by request, see https://stackoverflow.com/users/story/1087001 for a summary
Email: [email protected]
Mid to senior level dev with ~7 years of professional experience looking for a
medium to large company that values good engineering and long term customer
satisfaction (ie. a stable product). Must have ability to contribute back to
open source projects used by the company, and prefer a product built at least
partially open source itself. I sometimes consult in using good development
practices and procedures to prevent issues before they begin, and have a great
deal of experience contributing to open source projects such as Go and Docker
among others. I would love to bring that knowledge to your company and see if
working together would be a good match. I look forward to hearing from you!
------
GabrielBianconi
MACHINE LEARNING & DATA SCIENCE | REMOTE (NYC) | PART-TIME CONTRACT
Location: New York (NYC), USA (remote only)
Remote: Yes (experienced)
Willing to relocate: No
Technologies: Python, PyTorch, TensorFlow, Keras, sklearn, PySpark, and more
Résumé/CV: https://www.dropbox.com/s/8zp1e0ts5wp43x5/Gabriel_Bianconi_Resume.pdf?dl=0
Email: [email protected]
Website: scalarresearch.com / gabrielbianconi.com
LinkedIn: linkedin.com/in/gabrielbianconi
Senior machine learning engineer (data scientist) looking for part-time
contract work. Extensive experience in computer vision, NLP, and predictive
analytics.
* Built products for fast-growing startups (e.g. Scale AI, Fandom) and large corporations
* Recent projects include helping predict cancer therapeutics (NLP), reduce industrial accidents (computer vision), and optimize corporate QA (predictive analytics)
* Published ML research, served as a reviewer for ICML, and spoke at many leading technical conferences (e.g. AWS re:Invent)
* BS/MS in Computer Science (AI) from Stanford
~~~
GRANDUNO
Hi I am looking for a technical Co Founder for a B2C MarketNetwork. SMBs
provide a massive opportunity. Machine learning is amongst what I am looking
for. Let's connect if you feel interested: [email protected]
------
kaikoenig
Location: Berlin, Germany
Remote: Both
Willing to relocate: No
Technologies: Ruby, Rails, PostgreSQL, Redis, JavaScript, TypeScript, Vue,
Docker, Python, Go, AWS, a little K8S and openresty
Résumé/CV:
[https://kairichardkoenig.de/downloads/cv.pdf](https://kairichardkoenig.de/downloads/cv.pdf)
LinkedIn:
[https://www.linkedin.com/in/kairichard/](https://www.linkedin.com/in/kairichard/)
GitHub: [https://github.com/kairichard/](https://github.com/kairichard/)
Email: Follow link
Recently shutdown my own startup, would love to join a smallish team to make
something big again and get stuff done. I am good with numbers and marketing
speak also have done Business Intelligence and some ML, worked as Product
Owner and really like well designed distributed systems. Led multiple teams
with success in the past, wouldn't mind doing it again. Generally I can make
up missing expertise or knowledge through my work ethic, passion, and
ambition.
------
taphangum
SEEKING WORK| London, United Kingdom | REMOTE Technologies: Laravel,
Javascript, Node.js, Express, Postgres, MongoDB, GatsbyJS, React, React
Native, jQuery, Vue.js, HTML, CSS, TailwindCSS, AWS, Azure, Linux, Docker,
Redis, SASS, RESTful APIs, AngularJs, PHP, Python, Ruby, WordPress.
Remote: Yes
Location: London, England
Willing to relocate: Yes
Github: [https://github.com/Tapha](https://github.com/Tapha).
Email: [email protected]
I maintain a coding blog at:
[https://fromtoschool.com/](https://fromtoschool.com/)
Linkedin: [https://www.linkedin.com/in/tapha-
ngum-42a2944a/](https://www.linkedin.com/in/tapha-ngum-42a2944a/)
I'm a full-stack developer with 10+ years in Web and Hybrid Mobile/Desktop
Apps using front-end and back-end technologies.
Have developed relatively popular open-source software in the past: see Github
link.
Specialized in Web development, with additional experience in that I founded a
popular niche app templates site called
[https://myapptemplates.com](https://myapptemplates.com), which I was
fortunate enough to grow using SEO and then, after a year, subsequently sell.
Through this, I solidified my SEO/marketing-related skills, as well as my
ability to create and manage complex projects within the context of the
marketplace that I was operating in.
This, along with a solid grounding as a developer, allows me to provide a
unique perspective, and ultimately, a high-quality result to any individual or
business I work with.
------
solinent
Location: Canada
Remote: Yes
Willing to relocate: Yes (Canadian citizen)
Technologies: C++/C#/Java/Haskell/Python/JS/OpenGL/Vue/Flask/Qt/Houdini
I have a mathematics degree from Waterloo, where I was employed through their
co-op program for two years as a 3D graphics developer for SideFX's Houdini,
working on the 3D viewport. I then moved into augmented virtual reality (as we
called it), researching developing mapping systems for a company which sold to
Facebook, Sulon technologies. After that I worked for Teledyne Optech, the
leading Lidar company, developing their mapping suite software. At the present
I am working on building a startup developing an analytics suite software
using NLP for M&A law firms. Ideally I would find some part-time remote work
(30 hours is still okay) so I can continue with my business, but I am willing
to cut my losses given the right opportunity. Thanks!
Résumé/CV:
[https://asaldanha.com/resume.html](https://asaldanha.com/resume.html) Email:
[email protected]
------
sochix
Location: Russia, Moscow (UTC+3)
Remote: yes
Willing to relocate: Maybe
Preferable stack: Node.js/JavaScript/React/Docker
Resume/CV: [https://ipirozhenko.com/cv/](https://ipirozhenko.com/cv/)
Email: [email protected]
If you’re looking for CTO or technical partner who can solve a wide array of
technical tasks then you’ve come to the right place! I’m a polyglot
programmer, so I can take care of a whole stack of technologies that you have,
including old ones. Currently, my preferable stack is Node.js with any NoSQL
warehouse for a backend, React for a frontend, Python for ML related tasks and
Docker for infrastructure.
In addition, I’m a tech entrepreneur, which means that I want to solve
technical tasks that will help your business grow and generate more income.
Experience: [https://ipirozhenko.com/bio](https://ipirozhenko.com/bio)
Projects: [https://ipirozhenko.com/projects](https://ipirozhenko.com/projects)
I'm happy to talk business or simply give you some free advice. DM me!
------
DennisArslan
DevOps Engineer with more than 10 years of professional experience with Linux
infrastructures.
Location: Amsterdam, The Netherlands
Remote: Yes
Willing to relocate: No
Technologies:
• Cloud Platforms (e.g. AWS, GCP, Azure, OpenStack)
• Ansible and Puppet Certified Professional
• Docker Containers and Kubernetes
• Linux Infrastructures
• Scripting in Python, PHP, Ruby, Javascript, Bash
• Building CI/CD pipelines with Jenkins
• Hashicorp Tools as Terraform, Consul, Serf, Packer, Vault
• Elasticsearch, Logstash, Kibana, Graphite, Grafana
Résumé/CV:
[https://www.linkedin.com/in/dennisarslan](https://www.linkedin.com/in/dennisarslan)
/
[https://www.dropbox.com/s/i02okgink5fumx6/Dennis%20Arslan%20...](https://www.dropbox.com/s/i02okgink5fumx6/Dennis%20Arslan%20-%20DevOps%20Engineer.pdf?dl=0)
Email: [email protected]
------
perryrjohnson7
Location: Seattle, WA
Remote: Yes
Willing to relocate: No
Technologies: Python, Machine Learning Libraries (NumPy, Scikit-learn, Pandas,
PyTorch, fastai, TensorFlow, Keras, Turi Create), Web Application Frameworks
(Flask), JavaScript, MongoDB, MySQL, PostgreSQL, API’s, Geographic Information
Systems, Heroku, Google Cloud Platform, Bash, Git
Résumé/CV:
[https://www.linkedin.com/in/perryrjohnson/](https://www.linkedin.com/in/perryrjohnson/)
Personal site: [http://perryrjohnson.com](http://perryrjohnson.com)
Email: [email protected]
Blog: [https://medium.com/@perryrjohnson7](https://medium.com/@perryrjohnson7)
===
Hey! I’m Perry, a data scientist with 3+ years experience in e-commerce,
quantitative finance, farm tech, and leading data science initiatives in early
stage tech companies. I love leveraging data, machine learning and software to
solve meaningful problems. I’m looking to explore new opportunities with great
people whether it be project based or something more.
------
syngrog66
Location: Colorado, USA Remote: Yes or onsite
Willing to relocate: Yes (USA)
Technologies: Python, Java, web dev, SQL, Linux, Docker, cloud, C/C++, git,
distributed systems, threading, performance & scalability,
cryptocurrency/blockchain
domain experience: travel, real estate, education, foreign/online adversarial
propaganda/disinfo (APD), gaming, cryptocurrency/blockchain
Resume/CV:
[https://drive.google.com/open?id=13e3tdkKYcaNx6X34nd5BtK7amW...](https://drive.google.com/open?id=13e3tdkKYcaNx6X34nd5BtK7amWytVRVQ)
Email: [email protected]
decades of programming. solid computing system fundamentals. problem solving.
brainstorming. prototyping. communication. technical team lead. software
architect. SRE-ish. author of cheatsheet on Software Performance &
Scalability. tech research, due diligence and consulting for US State
Department. indie game engine creator since childhood. wrote & shipped a
zombie apocalypse simulation a decade ago -- which was _much_ more fun than
coronavirus
------
renaudg
Location: London
Remote: Yes
Willing to relocate: No
Summary : Senior DevOps / Site Reliability Engineer. Ex-Facebook. Freelance or permanent, open to short term gigs or 2-4 days/week.
Technologies: AWS, GCP, Kubernetes / Cloud Native tools, GitOps, Ansible, Linux, Python, Bash ...
Résumé/CV: https://www.linkedin.com/in/renaudguerin
Email: jobs at renaudguerin.net
20 years experience building and operating online services, including at
Facebook, major ISPs and many startups. My core skillset is in DevOps, Site
Reliability Engineering, Linux, AWS, GCP and Kubernetes, but over time I've
been involved in most aspects of architecting, building, running and scaling
online services. Keen interest in the business / product areas as well.
I was one of the first Facebook SRE hires in Europe (2010-2011), have
experience at many startups and before that in larger orgs in the ISP/hosting
world.
Happy to provide hands-on DevOps expertise to solve your infrastructure /
performance / cost / reliability challenges. I can also be relied on for
technology vision, systems design, technical operations, mentoring and general
engineering wisdom. I excel at understanding short vs long-term trade-offs,
identifying performance bottlenecks & future technical debt, quickly learning
and assessing new pieces of technology.
Available for freelance assignments (part-time / short-term projects welcome),
but I'll also consider employment for principal roles (head of infrastructure,
DevOps lead, tech co-founder) at startups.
Résumé/CV:
[https://www.linkedin.com/in/renaudguerin](https://www.linkedin.com/in/renaudguerin)
(PDF available upon request)
Email: jobs at renaudguerin.net
------
nickincardone
Location: Atlanta, GA
Remote: Yes, preferred
Willing to relocate: Yes
Technologies: Javascript (Express, Angular 1/2+, React), Java (Spring,
Tomcat), Python (Flask), Ruby (Sinatra)
Languages: English, Spanish (Conversational C1)
Other skills: Database Design, Software Architecture, Legacy Code Improvement,
Hybrid Mobile Application Development (Cordova)
Website: [http://nickincardone.com/](http://nickincardone.com/)
Résumé/CV:
[http://nickincardone.com/Nichlos%20Incardone%20Resume.pdf](http://nickincardone.com/Nichlos%20Incardone%20Resume.pdf)
Email: [email protected]
I am a full stack engineer with that is wrapping up a year long trip around
Latin America and am looking for a position where I can solve interesting
problems surrounded by talented people. I have experience ranging working with
small startups to being a lead developer on a billion-dollar product. I
consider myself a problem solver and am willing and able to pick up any
technology needed. My passions are music, sports, traveling, and learning
applications.
------
janardhan_adapa
Location: College Station, TX
Remote: Yes
Willing to relocate: Yes
Technologies: Python, C/ C++, Java, SQL, Spark, TensorFlow, PyTorch, Keras,
Pandas, Scikit-learn
Résumé/CV:
[https://drive.google.com/file/d/1rSsCA8N6cwURJsLk8lEKkJk75T8...](https://drive.google.com/file/d/1rSsCA8N6cwURJsLk8lEKkJk75T8zUnum/view?usp=sharing)
Email: [email protected]
LinkedIn: [https://www.linkedin.com/in/janardhana-swamy-
adapa/](https://www.linkedin.com/in/janardhana-swamy-adapa/)
Brief Summary about me: I have prior experience in a software engineering and
machine learning. Last summer I worked as a software intern at NVIDIA in which
I have worked on software development project (in C++). Prior to my Masters, I
have one year of professional experience at Qualcomm in which I gained
experience in object-oriented programming. I have also explored the field of
machine learning by participating in Kaggle competitions (won silver medal in
one of them).
------
ehlemur
Location: San Francisco
Remote: Yes please!
Willing to relocate: No
Technologies: Python, Golang, git, Google Cloud, Javascript, Typescript, some
Polymer, Angular, and TypeScript. Willing and eager to learn new techs.
Résumé/CV:
[https://drive.google.com/open?id=13upOfhwUBlJ7zSi5tlgkngJX3z...](https://drive.google.com/open?id=13upOfhwUBlJ7zSi5tlgkngJX3zaGzi7sr-
DxsvmW2uc)
Email: [email protected]
\---
Hi! My name is Edward. BSc in Mathematics. 4 years of experience improving the
developer experience for WebRTC and Chromium developers. I've worked on
everything from test bot fleet management for WebRTC; contributing to
crbug.com (Chromium's issue tracker) and Depot Tools (developer productivity
tools for Chromium developers); working with Git and Gerrit teams to improve
workflow for Chromium developers.
I'm good at going deep into complex systems, and learning things on the way to
solve problems.
I'm looking for new challenges and learning opportunities. I'd love to work
for a non-profit, and a small team. Work-life balance and stability are
important for me.
------
ulzeraj
I should be starting a new job in Poland before this all started so that
basically made me unemployed for the time being and worst case scenario with
no work at all. Even my irregular clients can't offer me work because they
can't open their business.
Location: São Paulo Brazil
Remote: yes
Willing to relocate: no (mainly because I already have a signed contract with
another company although I have no idea what happens now)
Technologies: GNU/Linux, {Open,Free}BSD, Docker, Kubernetes, Python and shell
scripting, basic GCP, ZFS
CV: https://automata.ee/resume.pdf
Email: psantos at the domain that hosts the CV
Here in Brazil I did a lot of work related to automating deployments of PoS
systems. I have made scripts for a full auto installation of Centos+Linx Store
X which were deployed for 2 major retail store chains.
My reserves can't last forever in case of a worst case scenario so I am
looking for short term work. Can work for cryptocurrency.
------
inertiatic
Location: Europe Remote: Yes, exclusively but okay with travel. I'm okay with
any timezone. Willing to relocate: No
Technologies: Most recently extensively used languages/frameworks are Python
(Django), Java (some Spring), and NodeJS. Significant experience with
Solr/Elasticsearch/Lucene. Various flavors of SQL (Postgres, MS and others)
and NoSQL (Redis, aforementioned Solr/ES and others). Queues (Kafka, SQS) and
containers running microservices.
Just to cover some main keywords without listing everything.
Résumé/CV: Email me (see profile), or ask me to contact you.
I've got around 6 years of experience developing mostly web applications. I've
had significant experience working on search systems (relevance tuning, query
parsing, highlighting, query expansion, learning to rank etc.). I'm only
looking for an opportunity to possibly get back to working on that sort of
thing (information retrieval, natural language processing or even more machine
learning related things that I have some experience with).
Thanks for having a look!
------
jessourand
Location: Richmond, VA
Remote: Yes, preferred
Willing to relocate: No
Technologies:
-Customer Success: Intercom, ZenDesk, HelpScout
-Marketing: HubSpot, SendGrid. Billing- Stripe
-Data Management: Periscope
Résumé:
[https://jessourand.github.io/images/JessOurandResume.pdf](https://jessourand.github.io/images/JessOurandResume.pdf)
Email: [email protected]
\---------------------------------------------------
I'm Jess, Customer Support Manager/ Account Manager of four years for a
LegalTech SaaS platform with a background in teaching. I'm in the market for a
support/success role with a team that is looking to add a friendly face to
onboarding processes, wants to build or improve their product knowledgebase,
and values customer feedback in guiding product development. I'm based in
Richmond, VA (EDT) and looking for full time (open for contract) remote work.
[https://linkedin.com/in/jessourand](https://linkedin.com/in/jessourand)
Happy hunting!
------
iconara
Location: Sweden (Göteborg/Stockholm) Remote: yes Willing to relocate: no
Technologies: AWS Résumé/CV:
[https://www.linkedin.com/in/theohultberg/](https://www.linkedin.com/in/theohultberg/)
[https://github.com/iconara/](https://github.com/iconara/)
[https://stackoverflow.com/users/1109/theo](https://stackoverflow.com/users/1109/theo)
Email: [email protected]
I help companies reduce their AWS bills, and do cloud migrations to AWS. This
is well suited to being done remote, and I'd be happy to do a free video call
to get an idea of your bill and what can be done – it's almost always possible
to reduce your bill by a large chunk. I've been working with cost optimization
in AWS for a couple of years, and with AWS for more than a decade.
------
tlapinsk
Location: San Francisco Bay Area
Remote: Yes
Willing to relocate: No
Technologies: SDLC, Product Development, Agile, Scrum, Project Management,
UX/UI, JIRA, Google Analytics, JavaScript, SQL, AWS, Azure, Terraform, Git,
TensorFlow, Keras
Résumé/CV:
[https://drive.google.com/open?id=1GVebhXuyIrVCZmDE9dJLhxVWfG...](https://drive.google.com/open?id=1GVebhXuyIrVCZmDE9dJLhxVWfGCnWKqA)
Email: [email protected]
LinkedIn:
[https://www.linkedin.com/in/timlapinskas/](https://www.linkedin.com/in/timlapinskas/)
GitHub: [https://github.com/tlapinsk](https://github.com/tlapinsk)
Recently furloughed Product Manager with strong front end, cloud
infrastructure, and data engineering experience. Ideally I would like to
continue working as a PM, but open to contract front end engineering, cloud
infra, or data engineering work as well (ETL, systems integration, etc.). Feel
free to reach out with any and all opportunities!
------
milafrerichs
Location: Berlin, Germany
Remote: Yes
Willing to relocate: No
Technologies: Data Visualization (d3.js, Vega, R), Data Analysis (pandas,
numpy, R), Data Pipelines (Python, AWS, Postgres, Docker), Geospatial
Development (EO, mapbox, openlayers, PostGIS, turf), SPA (React, Svelte), Web
Development (HTML, SVG, CSS/SASS)
Résumé/CV: [https://milafrerichs.com](https://milafrerichs.com)
Email: see website
I help social organisations create beautiful and engaging data visualisations
and improve or create their data pipelines.
I’m a full stack (geospatial) developer with 10+ years of experience creating
for the web.
I love to use my skills to do good and work on projects that have an impact.
I’m teaching mapping with d3 at
[https://mappingwithd3.com](https://mappingwithd3.com)
[http://github.com/milafrerichs/](http://github.com/milafrerichs/)
[https://www.linkedin.com/in/milafrerichs/](https://www.linkedin.com/in/milafrerichs/)
------
dep_b
I'm specialized in creating new mobile applications fast and flawless, but I
can also help to improve existing applications. I would like to be involved in
projects around remote communication platforms but I'm not limiting myself to
that.
Freelance consultancy gigs or fixed price projects are possible.
Location: Amsterdam / Utrecht, The Netherlands
Remote: Strong preference, otherwise limited to locations reachable by rail
Willing to relocate: Probably not
Technologies:
Expert in
- WebRTC
- Swift
- iOS (10 years)
Professional experience with
- C#
- Elixir
- Objective-C
- HTML / CSS / JS
Also worked with
- React Native
- Android
- PHP
... and a ton of other things I probably forgot to mention!
Would like to work more with Rust!
Résumé/CV: https://www.linkedin.com/in/lucas-van-dongen/
Email: lucas van dongen AT gmail com
------
bart47
Location: Berlin, Germany
Remote: Possible
Willing to relocate: no
Technologies: Machine Learning, Statistical Analyse, Regression trees, Gaussian processes, Deep Neural Networks (CNN, RNN, LSTM, Attention, VAE), Python, NumPy, Pandas, Scikit-Learn, Jupyter Notebook, xgBoost, Tensorflow
Résumé/CV: https://drive.google.com/open?id=14IIi2yC9bTQIwItCfdmAmcNofzbU3heJ
Email: bart47 at gmail.com
ML Engineer with 2 years (Software Engineer 10+ years) of experience in data-
driven business-focused applications with a solid mathematical and algorithmic
background. Developed efficient solutions to classification, regression and
learning to rank problems with all proved a success. Designed resource-
efficient data pipelines, distributed systems and insights visualisations.
Developed and led reliable, low-cost, in-house data infrastructure.
Interested in various ML research and distributed data processing. Responsible
and business-minded.
------
pjbk
I specialize in consulting for mission-critical systems development, with an
emphasis in robotics, medical devices, avionics and functional safety. For
complex projects I am also part of a network of seasoned engineers like me,
who have worked in prominent companies from several industries and that work
together to deliver turnkey solutions or anything in between - design to
certification.
Therefore if you need help with a project don't hesitate to reach out. And if
you have a similar background and experience we can use, we would certainly
like to talk with you too.
* Location: Fort Lauderdale, FL USA
* Remote: Yes
* Willing to relocate: No
* Experience: Embedded systems, real-time firmware, safety applications, mechatronic design, medical devices, IoT, technical PM.
* Technologies: C/C++, Python, Rust, SystemVerilog, RTOSes, OpenCV, PyTorch, GUIs, databases and web frameworks.
* CV: [https://www.linkedin.com/in/pbleyer](https://www.linkedin.com/in/pbleyer) (PDF on request)
* Email: [email protected]
------
zypeh
A Software Engineer based in Kuala Lumpur, Malaysia. I have taught myself
coding, distributed system knowledge and domain-specific language compiler
design for years, out of passion. I am interested in functional programming,
compiler engineering and distributed systems. I got 4 years of working
experience in product development, backend engineering and some early-stage
startup. Considering pivot into quantitative finance or machine learning.
Currently working on a hobby compiler that will make writing correct program
and proofs easy.
Location: Kuala Lumpur, Malaysia
Remote: Open to
Willing to relocate: Yes
Technologies:
- Proficient with:
Go, Rust, Node.js, Typescript
- Familiar with:
Haskell, C, Python
- Tourist:
OCaml, StandardML
Résumé/CV: zypeh.github.io (resume requested via email)
Email: [email protected]
Github: https://github.com/zypeh
------
pawelng
Location: Warsaw, Poland
Remote: Yes
Willing to relocate: No
Technologies: Ruby, Ruby on Rails, RSpec, React, Redux, NextJS, Apollo GraphQL, gRPC, Spree Commerce, PostgreSQL, MySQL, Redis, Docker, Git, Node.js, AngularJS, Backbone.js, HTML5, CSS3
Résumé/CV: http://linkedin.com/in/pawelnguyen | CV upon request
Email: [email protected]
I'm a full-stack Ruby engineer with 8 years of startup and e-commerce
experience.
Most recently I was part of a remote team for Sticker Mule — the Internet's
fastest growing printing company. My role was to help expand to 27 new markets
by designing and building payment, invoicing and tax related features. I
implemented 6 external API integrations to solve business problems and
increase scalability by breaking down a monolith e-commerce application into
microservices.
I worked in two app development companies where I built multiple web apps and
MVPs for US startups.
I lead a 5-people team, mentored and delivered constructive feedback. I worked
closely with product managers by taking ownership of the development
lifecycle, gathering requirements and making architecture decisions. As a
Scrum Master I built and improved products and processes iteratively.
I’ve been working remotely for almost 5 years. I’m most productive at my
dedicated office room with a stable internet connection, two monitors and a
stand up desk. Collaboration in this setup is essential. That’s why I
communicate progress and potential issues clearly, making best use of regular
video meetings and asynchronous communication channels.
I constantly perfect my skills by attending Ruby/Javascript conferences,
Startup Weekends and local meetups. I learn new technologies and tools by
reading books and watching online courses.
In my spare time I automate my home with programmable smart devices.
------
aleqks
Location: Rouen, France
Remote: Yes
Willing to relocate: No
Technologies: JavaScript, Vue.js, Node.js, CSS, HTML, #a11y, #webperf, #seo
Résumé/CV: https://www.linkedin.com/in/alexandreronsaut/?locale=en_US
Email: [email protected]
As a Web Platform enthousiast, I design and develop websites with methods
inpired by UX design and Agile. I like to focus on delivering quality front
end, with accessibility and speed in mind.
As a freelancer for 10 years in France, I have been working on many types of
websites, trained people, taken risks, learned from my mistakes, managed
engineers, increase my code quality, performed audits, administered servers,
improved my commits, curated conferences...
Today, I'm open to position that implies my front end expertise, JavaScript
(Node.js, Vue.js...), a well-balanced team and remote work.
My portfolio : [https://apollonet.fr](https://apollonet.fr)
------
michallech
Location: Poland
Remote: Yes (EST/PST timezones OK)
Willing to relocate: No
Technologies:
* Python, Django, Django Rest Framework, GraphQL
* AngularJS, MERN (MongoDB, Express.JS, React+Redux, Node.js), React Native, Vue.js
* Airflow, Kafka, ELK, TensorFlow, NLP/NLTK
* AWS, Docker, Kubernetes
Résumé/CV: https://michallech.info/static/Michal-Lech-Resume.pdf
Email: michal [AT] michallech.info
Website: https://michallech.info
I am Full Stack Developer and Software Architect with 12 years of commercial
experience (esp. FinTech, Healthcare) in prototyping, MVP, backend and
frontend development as well as maintenance and DevOps. Great communication
skills, Startup experience, team leadership, passionate about programming,
self starter, OK with freelance/consulting as well as full time work.
------
_puk
Looking for part-time, contract, interim, or consulting Product Engineering
lead roles
I'm an extremely experienced engineering and product leader.
Over the past decade I've built both the engineering and product teams for
multiple startups, specialising in taking teams from 3 to 30.
Engineering lead brought in at the outset to build the team from scratch for
Xumo, who recently sold to Comcast for $100m.
Responsible for introducing processes to allow the company to hire and scale
quickly, as well as hands on architecture of the linear video streaming
service in use by millions today.
Most recently built out the Engineering and Product teams for AMPLYFI, on
track to be Wales' first Unicorn.
Years of experience in remote team management, having simultaneously managed
teams directly on 3 continents. Highly experienced in technical recruitment.
Extremely personable, comfortable at IC through to board level.
What I can do for you:
\- Provide product and engineering leadership to ensure that your team
achieves maximum productivity as it scales, whilst maintaining your core
culture.
\- Drive all aspects of Engineering and Product to ensure that products and
features are delivered as required, when required. I provide a focus on what
is needed to ensure that solutions are not over engineered, nor over featured.
\- Work with your architects as needed to review cloud architecture and costs.
\- Avail and invest myself personally in your team, providing guidance,
mentoring and direction when needed.
Location : UK
Remote: Only
email: In profile
Relevant links:
abovethewater.co.uk
linkedin.com/in/joe-mathews-245b56122/
------
arturrdias
Location: Porto, Portugal
Remote: Yes
Willing to relocate: No
Technologies:
Node.js, React, ASP.NET, HTML, CSS (SASS), Azure, AWS, Docker, Git,
JavaScript, C#, Business Intelligence, Analytics, Xamarin.Forms, SQL Server,
PowerBI.
Résumé/CV:
We're a development team for a start-up that has had a significant drop in
sales due to the COVID-19, due to impact in our operations. Thus, we're also
looking for a 2/3 month project that will help us overcome this situation with
less of an economic impact. We've developed a product that generated over $1 M
USD in sales in the last two years. We offer a full team for a turn-key
project if possible - 2 developers, 1 designer, 1 digital marketing manager
and 1 product owner/scrum master. Will share more detail and skills, along
with history of successful developments, upon contact.
Email:
[email protected]
Hit us up for any topic! Thanks!
------
saelamin
\----------------------------------------------------------
* Location: Atlanta, GA USA
* Remote: Yes
* Willing to relocate: No
* Technologies: Full stack developer and designer. PHP, Laravel, Javascript, ES6, React, jQuery, HTML/CSS, SASS, LESS, MySQL, AWS, Linux, Web APIs, RESTful APIs, WordPress, Elasticsearch, Algolia
* Resume/CV: [http://23andwalnut.com](http://23andwalnut.com)
\----------------------------------------------------------
Full stack developer and designer. 15 years total programming experience, 10+
years building for the web, 5 years technology and strategy consulting. I
provide full service software development and combine strategy, technology,
and design to solve complex business challenges. Extensive experience taking
projects from concept all the way through launch and have worked with clients
of all sizes, from individuals and startups to multinational enterprise
companies.
\----------------------------------------------------------
* Email: projects [at] 23andwalnut.com
\----------------------------------------------------------
------
hwwc
Location: Boston, US
Remote: Yes
Willing to relocate: No
Technologies: Rust, Python/Pandas, Node/JS, Clickhouse, Postgres, GCP/AWS,
Linux
Resume: [https://github.com/hwchen](https://github.com/hwchen) ,
[https://www.linkedin.com/in/walther-
chen-5b87a512/](https://www.linkedin.com/in/walther-chen-5b87a512/)
Email: [email protected]
ABOUT:
I've most recently worked in a data-analytics backend-stack: from ETL to
database design to web-api to devops. One of my major projects is an analytics
engine for web applications
([https://github.com/hwchen/tesseract](https://github.com/hwchen/tesseract))
using Rust and Clickhouse.
However, I'm naturally curious and happy to work in any domain which requires
high performance and maintainable code. I've worked with a distributed worker
system, debugged async database drivers, and implemented text layout
primitives.
------
tdevito
Location: New York City
Remote: Yes
Willing to relocate: No
Technologies: JavaScript, TypeScript, Ruby, Python, Node.js, Express.js,
TensorFlow.js, HTML5, CSS3, SASS, Git, GitHub, React, Angular, Ionic, Ruby on
Rails, SQL, NoSQL, Database Modeling, Web API Integration, Postgres, Firebase,
and NPM.
Résumé/CV: Request via email
LinkedIn:
[https://www.linkedin.com/in/tdevito/](https://www.linkedin.com/in/tdevito/)
GitHub: [https://github.com/tommyd2377](https://github.com/tommyd2377)
Website: [https://tomdevito.org/](https://tomdevito.org/)
Email: tdevito [at] icloud [dot] com
I am an experienced and creative full-stack software engineer that is looking
to join a mission driven company with interesting technical challenges. I have
built complex web apps, designed algorithms, built a deep neural network using
TensorFlow and can pick up new languages and frameworks in a short period of
time.
------
boneitis
Location: Sacramento, California, United States
Remote: Yes
Willing to relocate: Yes
Technologies: Python, Bash, Pentesting / Consulting
Résumé/CV: https://www.linkedin.com/in/boneitis/ | https://github.com/boneitis/ | Résumé upon request
Email: Listed on HN profile
That foot caught in your door could be that of a digital security enthusiast
(i.e., mine)!
A night off is often spent at the workstation hopefully long enough to solve a
CTF reversing challenge or boning up on my cryptography, be it in coding
practice or theoretical studies. Proudly, I have completed the Cryptopals'
original six and aim to take it all the way!
I am looking to step up from the sandboxes and assist with fortification
efforts for live infrastructure as a consultant. And, it is my hope that such
industry exposure, sprinkled with your expert guidance, will accelerate my
pursuits in further learning.
------
dl3194
Location: Virginia, USA
Remote: Yes
Willing to relocate: No
Technologies: Javascript (NodeJS, AngularJS/2+), Python, SQL/NoSQL
(PostgreSQL, Mongo, DynamoDB), Bash, Git (Github), CI/CD, AWS, Docker
Resume/CV:
[https://www.dropbox.com/s/zp5res07praz0q8/DL_Resume.docx?dl=...](https://www.dropbox.com/s/zp5res07praz0q8/DL_Resume.docx?dl=0)
LinkedIn: [https://www.linkedin.com/in/daniel-
larner-79b7a06a/](https://www.linkedin.com/in/daniel-larner-79b7a06a/)
Github:
[https://www.github.com/dlarner3194](https://www.github.com/dlarner3194)
Email: [email protected]
I'm a Software Engineer with a focus on the backend, but open to full-stack
opportunities. I enjoy building microservice architecture applications with
cloud-based infrastructure (mostly AWS). Looking for an opportunity where
there is a small team and entrepreneurial spirit.
------
Peretus
Location: Islamorada FL, USA
Remote: Yes
Willing to relocate: Yes
Technologies: Javascript, React, React Native, Angularjs, Angular, Redux,
Node, Express
Résumé/CV:
[https://drive.google.com/file/d/1vAIMwVB9QIN1z9KfMM2B45dh_Bn...](https://drive.google.com/file/d/1vAIMwVB9QIN1z9KfMM2B45dh_BnDr9Se/view?usp=sharing)
Email: [email protected]
LinkedIn: [https://www.linkedin.com/in/casey-
mcneil-a5625b11/](https://www.linkedin.com/in/casey-mcneil-a5625b11/)
I'm a software developer currently located in the Florida Keys in the USA and
I'm looking for a great team after my venture-backed employer was forced into
laying off the entire staff. I've been working remotely for over a year on a
distributed team, working full-stack on a Angularjs application with a Rails
backend. I'm currently open to contract, contract to hire, and full-time
opportunities with great teams.
------
andrewseanryan
Location: American living in Ottawa, Canada
Remote: Yes
Willing to relocate: Yes
Technologies:
- Marketing/Digital: Google Ads, Facebook/Instagram Ads Manager, Adobe Photoshop, Adobe Illustrator, Adobe Premiere, Adobe After Effects, Wordpress, Shopify.
- Enough to be dangerous: Javascript, Ruby, Python, C, HTML, CSS.
Resume:
[https://www.linkedin.com/in/andrewseanryan/](https://www.linkedin.com/in/andrewseanryan/)
Email: andrewseanryan [at] gmail [dot] com
I am a two-time founder and more recently, a freelancer. No, I didn't make
millions on an exit, but I know the ins-and-outs of early-stage startups and
could help in a number of areas. I created and manage a marketing campaign
that has provided 10x returns and ~ $1,000,000 in revenue for one of my
clients. I'm a no excuses, get stuff done kind of person and I would love to
put my skills and energy into a startup. Let me know how I can help!
------
BenoitP
Machine learning engineer, specialized in Explainable AI / ML
Recent Highlights:
* Implementation in Spark/Scala of treeinterpreter, currently used in production
* Participation to the FICO-Google Explainable Machine Learning Challenge
* Intuitive, visual data/signal explorer (work in progress, partial view at [http://explicable.ml](http://explicable.ml) (the 3D background view))
Location: Paris, France
Remote: yes
Willing to relocate: for the right job, yes
Technologies: SHAP, RuleFit, Random Forest, Word2Vec, PCA, t-SNE, LSH, ROC,
Scikit-Learn, Spark, Weka, Databricks, BigQuery, Hive, Postgres, MySQL,
Oracle, AWS, Linux, Maven, Git, Java, Scala, Python, CAML, Elm, Javascript,
Spring, Primefaces, d3.js
Résumé/CV:
[https://www.linkedin.com/in/benoitparis/](https://www.linkedin.com/in/benoitparis/)
Github: [https://github.com/benoitparis/](https://github.com/benoitparis/)
Email: [email protected]
------
jaredmosley
Location: Dallas, TX
Remote: Yes
Willing to relocate: Yes
Technologies: Fullstack development, Javascript, Node.js, Angular, Java,
Mulesoft, Python, SQL, Linux
Resume/CV: [https://docs.google.com/document/d/1C8OVbmk-
QET4Y6DsNueoDtWK...](https://docs.google.com/document/d/1C8OVbmk-
QET4Y6DsNueoDtWKK9FvLKqIb85W1va8xlI/edit?usp=sharing)
Email: [email protected]
LinkedIn: [https://www.linkedin.com/in/jared-
mosley-a23a49140/](https://www.linkedin.com/in/jared-mosley-a23a49140/)
Github: [https://github.com/superturkey650](https://github.com/superturkey650)
I am a Fullstack developer trying to find something to dig my teeth into. I
enjoy refactoring just as much as creating from scratch, and I know the
importance of documentation and good communication. I give back to my
community using my skills and am eager to grow with good mentors.
------
markshte
Location: Irvine, CA US Remote: Yes Willing to Relocate: Yes Technologies:
ETL, .NET, JS libraries/frameworks, CI/CD, Cloud Platforms, SQL/NoSQL, Mobile
Resume: [https://www.linkedin.com/in/mark-steinberg-software-
exec](https://www.linkedin.com/in/mark-steinberg-software-exec) Email:
[email protected]
Bio: Passionate, seasoned, international, technical executive manager, with
over 19 years of experience successfully planning and delivering high-end
complex solutions and digital transformations.
Leading and improving all facets of technical life-cycle from
conceptualization to global success for companies, ranging from SMB to Fortune
100 global enterprises. Ability to lead large multi-disciplinary teams to
deliver complex projects on time and on budget.
Expert in digital transformations.
------
danthelion
Location: Budapest / Hungary
Remote: Yes
Willing to relocate: Yes
Technologies: Python (pandas, scikit, airflow, luigi, etc.), Docker,
Kubernetes, GCP, CI/CD, bash, ETL
Résumé/CV:
[https://drive.google.com/file/d/1-63YRu9xkMKkLxnN4CwI0_IEI0c...](https://drive.google.com/file/d/1-63YRu9xkMKkLxnN4CwI0_IEI0cfXWX1/view?usp=sharing)
Email: danivgy at gmail dot com
Linkedin:
[https://www.linkedin.com/in/danthelion](https://www.linkedin.com/in/danthelion)
GitHub: [https://github.com/danthelion](https://github.com/danthelion)
Hey, I'm Daniel. I'm a Software Engineer from Hungary with around 6 years of
experience in a wide range of technologies. I love solving problems which
require me to study previously unknown topics. I love working with data
(mainly the ETL and infrastructure) part and web backend services.
------
guilledevel
Location: Montevideo, Uruguay (EST+1)
Remote: only remote
Willing to relocate: no
Technologies:
- Deep knowledge of PHP, Javascript, Docker, docker-compose, GIT, jQuery, Symfony, Bootstrap, Less, Sass, AngularJS
- Good knowledge of Terraform, AWS ECS, Typescript, Angular +2, Linux, MySQL, Apache, GatsbyJS, Drupal
- Basic knowledge of Kubernetes, Jenkins, React, Webpack
CV: Write me an email
Email: guilledevel at Gmail dot com
Website: [https://guille.cloud](https://guille.cloud)
I'm a full-stack developer, knowledgeable on DevOps techniques, and an
effective team player with +13 years of experience writing PHP backends, +12
years writing Javascript/HTML/CSS frontends, and +2 years working with Docker,
Terraform and AWS.
I help remote teams improve their streams of value, delivering solid solutions
at every layer of a web application: frontend, backend, architecture,
infrastructure.
------
kaolinite
Location: London, UK
Remote: Yes (but on-site is fine too)
Willing to relocate: No
Technologies: Ruby on Rails, React (inc. some React Native), Javascript,
front-end development
Résumé/CV:
[https://www.linkedin.com/in/timdavies3/](https://www.linkedin.com/in/timdavies3/)
Email: [email protected]
\---
My contract is up within the next few weeks so I'm looking for something new.
Preferably another contract but I might be open to a permanent position at the
right company. I like working with startups but it isn't a dealbreaker – my
main priorities are a good team, a good work environment and a product that
matters.
I've been working with Rails for the past seven years or so, and have been
involved in web development for a bit longer. I'm happy to write code all day
or sit at a higher level and work on planning or architecture. I've also
mentored and trained junior developers as needed, and can help with hiring.
Please don't hesitate to get in touch.
------
NCharby
Location: Greater Seattle
Remote: Yes
Willing to relocate: No
Technologies: JS, React, Backbone, Node, Express, Apollo, REST, GraphQL, Flow,
Sketch, Adobe CC, Whatever's clever in modern webdev
Résumé/CV:
[https://www.linkedin.com/in/nickcharbonneau/](https://www.linkedin.com/in/nickcharbonneau/)
Email: [email protected]
Designer turned Engineer turned Product Manager. Another Startup hopeful cast
out into the cold during Covid19. 9 years professional experience creating
everything from games to government to ML powered financial tools most
recently.
I thrive in the chaos of the startup world. I remove ambiguity and lead teams
to build great products through Design Thinking, honest communications, and
never being afraid to get my hands dirty in the code.
Founders, I'm looking for you.
------
urlDev
Location: Turkey
Remote: Only remote, please
Willing to relocate: No
Technologies: HTML5, CSS3, SASS/SCSS, Bootstrap/React, Bootstrap,
JavaScript/ES6, React, Gatsby, Styled-Components, Git/Github, Adobe XD
Résumé/CV: [https://canural-resume.netlify.app/](https://canural-
resume.netlify.app/)
Email: [email protected]
Hi, I am Can. I am a career changer Front-End Developer, previously team
leader, and Helicopter Pilot. I am looking for my first developer job.
Before scrolling down, check my projects on GitHub and portfolio website. If
you are interested, do drop me a line!
GitHub: [https://github.com/urlDev](https://github.com/urlDev)
Website: [https://www.can-ural.com/](https://www.can-ural.com/)
------
saad-tarhi
Location: Agadir, Morocco
Remote: Yes
Willing to relocate: No
Technologies: React JS, Vue.js, Gatsby, JavaScript (ES6+), HTML5, Semantic
HTML, CSS3, Responsive design, Sass, Material Design, Webpack, Git, GitHub,
Bitbucket, GitLab, Netlify, Jest, Firebase, Lighthouse, PSD/Sketch to HTML
Coding, WordPress.
Résumé/CV:
[https://drive.google.com/file/d/1LEhKDYl5KuDmit-4g5_5gCcBGj5...](https://drive.google.com/file/d/1LEhKDYl5KuDmit-4g5_5gCcBGj5MJdJX/view)
Email: [email protected]
LinkedIn: [https://www.linkedin.com/in/saad-
tarhi/](https://www.linkedin.com/in/saad-tarhi/)
GitHub: [https://github.com/tarhi-saad](https://github.com/tarhi-saad)
I have good experience in developing web apps with great UI/UX design. You can
check my latest projects on my GitHub account to see what I can do. I'm an
expert in Vanilla JS (ES6) / Webpack, and I also use React JS and Vue.js to
speed up the development process. I love this field, and I don't stop
learning.
Here are some links to my latest work:
[https://github.com/tarhi-saad/TodoMVC-Vanilla-ES6](https://github.com/tarhi-
saad/TodoMVC-Vanilla-ES6)
[https://github.com/tarhi-saad/tic-tac-toe](https://github.com/tarhi-saad/tic-
tac-toe)
[https://github.com/tarhi-saad/Library](https://github.com/tarhi-saad/Library)
For more information, I invite you to check my "Resume"
Kind regards,
Saad
------
olivermarks
I'm very open to networking opportunities. I am based immediately north of San
Francisco where I've lived for 27 years and have held senior management
positions in large companies (Sony PlayStation, HPE) and more importantly been
a consultant on digital evolution for multiple large enterprises globally.
Looking for fresh business relationships.
Location:San Francisco CA Remote: Yes, I work from home and travel/telecommute
to clients Willing to relocate: N/a Technologies: I'm more on strategy,
project management and execution side but have good understanding of coding
world Résumé/CV:
[https://www.linkedin.com/in/olivermarks/](https://www.linkedin.com/in/olivermarks/)
I have various project that were on tight nda I only discuss privately, ie not
on linkedin Email: use linkedin
------
tj0
Location: Vancouver, WA
Remote: Yes (preferred)
Willing to relocate: No
Technologies: PHP, Python, Ruby, JS (Angular, Vue, React, jQuery, Vanilla), SQL, Linux, FreeBSD
Résumé/CV: https://www.thomasjost.com/cv/
Email: [email protected]
I enjoy learning new technologies and working on inspiring projects. In
addition, I prefer to work throughout the full stack as my background has
required full understanding from UI through to the full backend
infrastructure.
The majority of my experience has been in the startup space, and I'd prefer to
move back into that type of environment over working for another medium/large
corporation.
I'm also very passionate about security and am studying to pursue the OSCP
later this year, so any roles in secure development or appsec will catch my
eye over full stack roles, though I'm open to most opportunities.
------
tuckpuck
Location: Boulder, Colorado
Remote: Preferred
Willing to relocate: No
Technologies: JavaScript/ES6, SASS/CSS, React, Gatsby, jQuery, User
Interfaces, Git/GitHub, Web Application Development, Developer Tools, Agile
Methodology, Node.js, Express.js, WordPress, and more.
Résumé/CV: Available on request.
Email: tuckertriggs(at)gmail.com
Website: [https://tuckertriggs.com](https://tuckertriggs.com)
LinkedIn:
[https://linkedin.com/in/tuckertriggs](https://linkedin.com/in/tuckertriggs)
Github: [https://github.com/tuckpuck](https://github.com/tuckpuck)
Full-stack developer (front-end focused) specializing in using Javascript,
React, and various other tools to build modern websites and web applications.
I have a versatile skill set and strong communication skills. Looking for
contract work or full-time employment.
------
lardissone
Location: Argentina
Remote: Yes
Willing to relocate: No
Technologies: Python, Django, Flask, Node.js, Express, Javascript, React,
React Native, Redux, Vue, MongoDB, PostgreSQL, Redis, GraphQL, Serverless,
Microservices, Docker, AWS, nginx, RESTful.
Résumé/CV: [https://leandroardissone.com/](https://leandroardissone.com/)
Email: [email protected]
LinkedIn:
[https://linkedin.com/in/lardissone](https://linkedin.com/in/lardissone)
I’m a full stack developer who has worked professionally for around 18 years.
I've been working remotely for 10 years for clients in the US. I have been
doing back-end and front-end development of web apps, also hybrid mobile apps.
More recently I've been working with serverless infrastructures for more
scalable apps. I am passionate about new technologies and I am a quick
learner. I'm available full-time and part-time.
------
tzatziki
Location: Boulder, Colorado/ Easton, Pennsylvania
Remote: Yes
Willing to relocate: Yes
Technologies: React, React Native, Python, JavaScript, TypeScript, HTML/CSS,
Scala, C++, Elm, Firebase, AWS, Docker, Docker-Compose, GIT,
Résumé/CV:
[https://michaelnicolaou.com/resume](https://michaelnicolaou.com/resume)
Email: [email protected]
I'm focusing on software development with an emphasis on full-stack
development. I have extensive experience working on the front-end with
frameworks such as React and Angular. Don't hesitate to reach out.
LinkedIn: [https://www.linkedin.com/in/michael-
nicolaou/](https://www.linkedin.com/in/michael-nicolaou/)
Github: [https://github.com/tzatzikisauce](https://github.com/tzatzikisauce)
------
danielmunro
Location: Seattle
Remote: yes
Willing to relocate: no
Technologies: kubernetes, java (and other jvm languages, groovy, kotlin),
python, javascript, typescript, php, shell, AWS, terraform, devops, jenkins,
travis, build and deploy tools, ci/cd, microservices
Resume/CV: [https://www.linkedin.com/in/dan-
munro-448b6120/](https://www.linkedin.com/in/dan-munro-448b6120/)
Public profile: [https://danmunro.com/](https://danmunro.com/)
Email: [email protected]
Hello! I was laid off due to the economic slowdown caused by COVID. Previously
I worked at a startup in Austin, TX for six years, the last three building a
distributed AI/ML data labeling microservices platform. As the third employee,
I helped interview and onboard most of the company's engineers. I would love
to chat about almost any opportunities out there. Thank you for reading.
------
magnmarelli
Location: London UK/Central America (I spend more time in the latter so I only
look for EST/PST time zone gigs).
Remote: Yes
Willing to relocate: yes (US only)
Technologies: React, Angular, HTML5, CSS3, Javascript, Typescript, Node,
Devops (Docker + Kubernettes), AWS, MongoDB, NoSQL, Java, Blockchain,
Solidity, Ethereum
I am an engineer with 7 years of experience. Even though I am a a very well
rounded full stack dev my bias is definitely in the front end. I have worked
for both massive corporation (80k+ people) and small startup in the fintech
and Blockchain space.
Linkedin:
[https://www.linkedin.com/in/umbertogarozzo/](https://www.linkedin.com/in/umbertogarozzo/)
Github: [https://github.com/gtonizuka](https://github.com/gtonizuka)
Email: [email protected]
------
macglass
Location: Chicago, IL
Remote: Yes
Willing to relocate: No
Technologies: Python, Flask, React/Redux, Node, Express, Javascript, SQL,
SQLAlchemy, PostgreSQL, jQuery, HTML/CSS, Git, Heroku, AWS, and more.
Résumé/CV: [https://www.scribd.com/document/454412291/MacGlass-
Resume202...](https://www.scribd.com/document/454412291/MacGlass-Resume2020)
LinkedIN:
[https://www.linkedin.com/in/macglass/](https://www.linkedin.com/in/macglass/)
Email: [email protected]
===
Hi, my name is Mac and I am a full-stack engineer looking for complex
challenges that will push my boundaries as a developer. I enjoy wrestling with
backend architecture involving various data streams and operations. I believe
the most powerful technologies have simple design with robust capability. I am
opened to both contract work/projects and/or something full-time.
------
teetertater
New Grad Data Scientist / Machine Learning Engineer (May 2020) with experience
at 2 startups
Location: Vienna, Austria
Remote: Yes or On-Site
Willing to relocate: Vienna or nearby
Tech: Python, Scala, R, PyTorch, fast.ai, SQL, Docker, Kubernetes, GitHub/BitBucket LaTeX, NumPy
Languages: English/Russian Native Speaker, German B2 (Conversational)
Résumé/CV: [https://www.yury.cc/resume.html](https://www.yury.cc/resume.html)
Website: [https://www.yury.cc/](https://www.yury.cc/)
LinkedIn:
[https://www.linkedin.com/in/yzhuk](https://www.linkedin.com/in/yzhuk)
GitHub: [https://github.com/Teetertater](https://github.com/Teetertater)
Email: [email protected]
------
8bitstudio
Location: Northern Europe
Remote: Yes
Willing to relocate: No
Technologies: .NET [Core] (C#, F#); ASP.NET; JVM (Clojure, Java, Scala);
Python; AngularJS; Vue.js; React; iOS (Swift); AWS (wide range of services);
databases: Microsoft SQL Server, PostgreSQL, MongoDB, Datomic, Couchbase,
Redis, Event Store
Résumé/CV: On request
Email: hello[at]8bitstudio[dot]dev
We are a three-person full-stack highly professional development team with
extensive experience in online advertising and fintech. We can consult on
architectural problems, work as a discrete unit or a part of another team on
implementing the solution.
Describe us your task, project or idea and we will provide a timely response
with estimates and a plan. We offer very flexible rates and will help you with
suggestions on how to best optimize the development effort.
For contact details and other information please visit:
[https://www.8bitstudio.dev/](https://www.8bitstudio.dev/)
------
lukadante3
Location: Zürich, Switzerland
Remote: no
Willing to relocate: no
Technologies: kubernetes, go, Java. I'm interested in doing more Rust.
Resume: Via email
Email: [email protected]
I started as a full stack engineer after which I got interested in CI/CD and
then moved to site reliability engineering. I'm looking for an SRE/software
position with a good balance between automating systems and coding.
------
eatonphil
Location: Brooklyn, NY
Remote: Yes
Willing to relocate: Not immediately
Technologies: Python, JavaScript, Go, PostgreSQL, React, TypeScript, AWS (ECS,
S3, Athena), GCP
Email: [email protected]
Blog: notes.eatonphil.com
Github: github.com/eatonphil
==
Lead engineer and manager building web applications for the last 4 years,
software development for the last 7. Had an engineering management gig lined
up with an F100 company that disappeared due to the recession. I'm comfortable
leading or partnering from product definition, mockups, programming, to
operations. Primarily in JavaScript, Go, and Python on AWS/GCP.
Message me about contract work or employment. I'm interested in new projects
or maintaining/upgrading legacy ones.
Check out the blog and github for numerous programming snippets and technical
writing over the years. Specifically the last few series have been featured
here on 1) compiler implementation basics, 2) x86 emulator implementation
basics, and 3) sql database implementation basics.
~~~
eatonphil
The gig lined up ended up working out, was just a communication mix-up.
------
ThePadawan
Location: Zurich, Switzerland Remote: Yes
Willing to relocate: Yes
Technologies: C# (ASP.NET, .NET, .NET Core, Entity Framework Core), Java,
Python (Flask, Django, SQLAlchemy), T-SQL, Azure, GCP, Docker,
TypeScript/Javascript, React, Vue.js, Angular (2, 5), HTML5, Bash
Resume/CV:
[https://leastsignificantbit.de/static/CV.pdf](https://leastsignificantbit.de/static/CV.pdf)
Email: [email protected]
German full stack developer with MSc CS and 4 years of software engineering
experience. Experience with Agile (Scrum), both project- and product-based
development and interpersonal communication. Interested in public speaking,
teaching and architecting for the monolith/microservice dichotomy. Currently
looking to find a new opportunity to both grow in the area of project
management, and produce meaningful change in an international environment.
------
miga
Location: Poland
Remote: Yes
Willing to relocate: Maybe after epidemics is over?
Technologies:
Python,Haskell,Elm,PureScript,HTML,CSS,Node.js,AWS,Ansible,Docker,XSLT,XPath,code
generation,math-based systems
Resume/CV:
[https://www.linkedin.com/in/mjgajda/](https://www.linkedin.com/in/mjgajda/)
Email: mgajda[at]mimuw.edu.pl
------
Sanjay_143
Location: India
Remote: Yes
Willing to Relocate: Not at the moment
Technologies: React, Redux, React Native, Angular, Node, Javascript, CSS,
HTML, jquery, UI/UX, d3, Wordpress, Shopify, Laravel, PHP etc.
Resume: [https://www.linkedin.com/in/sanjay-makasana-
freelancer-2aa64...](https://www.linkedin.com/in/sanjay-makasana-
freelancer-2aa64b49/)
Email: [email protected]
This is Sanjay and I am an expert level developer with 5+ years of experience
mostly in SASS and web app development. Here's my GitHub Link in which you can
see in the last year only I have almost done 2,516 contributions and I have
work with many clients currently, You can surely check out my clean code and
the repositories which I have created.
Github: [https://github.com/makasanas](https://github.com/makasanas)
I can start work immediately.
Thanks.
------
martin__
Location: Singapore
Remote: Yes
Willing to relocate: Yes
Technologies: Salesforce/force.com, Apex, Visualforce, etc
Résumé/CV: [https://www.linkedin.com/in/martin-
glauber-583b143a/](https://www.linkedin.com/in/martin-glauber-583b143a/)
\-----
For the past 7+ years, I have been working as a software developer supporting
a US product entering the China market. Salesforce, force.com and the related
wed technologies are what I'm most familiar with, but I would be willing to
consider projects outside of that scope as well.
Aside from software development, I am a native speaker of American English,
and I've also gotten fairly good at Chinese since I've been living in mainland
China for the last 10 years.
If anyone out there needs Salesforce/force.com technical expertise, or is
hiring for an internationally-focused company or project, I would be
interested in hearing from you.
------
I-M-S
Product manager with 7+ years of experience managing digital projects. HN
crowd might know me by my audio series The Program.
Location: Toronto
Remote: Yes
Willing to relocate: Yes (Canadian PR, EU passport)
Qualifications: PMP and Scrum master certifications, proficient in animation,
wireframing, design, audio/video editing, and project management software
CV:
[https://www.dropbox.com/s/1zn6zq3o93lc3oi/IMS_CV_IT_2020.pdf...](https://www.dropbox.com/s/1zn6zq3o93lc3oi/IMS_CV_IT_2020.pdf?dl=0)
Portfolio:
[https://www.dropbox.com/s/tdt4ej3nl8y5imx/IMS_portfolio_2020...](https://www.dropbox.com/s/tdt4ej3nl8y5imx/IMS_portfolio_2020.pdf?dl=0)
LinkedIn:
[https://www.linkedin.com/in/ivanmirkos/](https://www.linkedin.com/in/ivanmirkos/)
------
deepsunn
Location: Southeast USA
Remote: Yes, please.
Willing to relocate: Really focused on fully-remote, but would relocate back to NYC for the right opportunity
Technologies: JavaScript, React/Redux, Node, Sass, PostgreSQL
Résumé/CV: https://docs.google.com/document/d/12fRriSbxIGhiRZ_ypoxcLmrgr1NPSXiVhY02Ecbd4uQ/edit?usp=sharing
Email: [email protected]
Lots of full-stack SaaS product experience. I've got a lot of depth on the
front-end, but I have a good bit of breadth across the stack. Currently
working fully remote (pandemic or not) on a product team. Love building
products and having a hand in shaping their future for the good of users.
------
3ace
SEEKING WORK | Indonesia | REMOTE
I'm a mobile application developer with experiences in using Flutter and
native code. But mainly I'm using Flutter for a couple of years now.
Besides that I also has experience in game development, with game released for
Windows (using C/C++) and mobile games (using Unity).
Location: Bandung, Indonesia Remote: Yes Willing to relocate: depends on
location Technologies: Flutter, Unity 3D, C/C++, C#, PHP, Golang Résumé/CV:
[https://www.linkedin.com/in/adeanom/](https://www.linkedin.com/in/adeanom/)
Email: adeanom [at] gmail.com
I'm a mobile app developer that now mainly using Flutter to develop my app.
Before that I've been developing games for more than 10 years, mainly using
C/C++ and Unity.
I also has experience in using PHP or Golang to develop a backend system
------
tomatohs
Location: Austin TX
Remote: Yes please!
Willing to relocate: Maybe
Technologies: Javascript, NodeJS, Vue, React, MongoDB, Electron, SailsJS,
Express.
Résumé/CV: [https://jnnngs.com](https://jnnngs.com),
[https://haxor.sh](https://haxor.sh),
[https://paircast.io](https://paircast.io)
Email: [email protected]
\---
Hey! I'm a Javascript Developer / Developer Advocate / Developer Experience
Consultant, Product Engineer looking for ~3 month contracts.
Some unique things about me:
\- I'm pioneering "developer experience testing" which is like user experience
testing for developers. I can help fix your API onboarding. \- I've worked as
a developer advocate for more than 6 years \- I've launched and supported more
than 10 production products (alone and with small teams) \- I love creating
technical demos and technical content
------
atomashpolskiy
Location: Remote (UTC+3)
Willing to relocate: Not now
Technologies: Java, Rust
LinkedIn:
[https://www.linkedin.com/in/tomashpolsky/](https://www.linkedin.com/in/tomashpolsky/)
Github: [https://github.com/atomashpolskiy](https://github.com/atomashpolskiy)
Email: nordmann89 at google mail
I am a backend/systems developer with a strong affinity for data processing
and storage, messaging, distributed and decentralized systems.
I have a successful track record of leading and delivering complex projects at
well-known financial institutions and software product companies.
I would love to join a small focused team of experts, especially in the area
of systems development.
Additionally, I am the author of:
\- a popular BitTorrent library (Java),
\- a face detection library (Rust),
\- an application for EEG research, developed for a French medical research
institution (Java),
and a leading contributor to several other OSS projects.
------
sjayasinghe
Location: New York City, NY / NYC
Remote: Yes
Willing to relocate: Yes, for the right opportunity
Technologies: Javascript(Node.js, TypeScript, React, React Native), Python,
Haskell, OCaml, Golang, GraphQL, SQL/Postgres, MongoDB, Redis, Neo4j, Docker,
Kubernetes, GCP, AWS.
Résumé/CV: Available on request via email
Email: sj2564 [at] columbia [dot] edu
Recent graduate of Columbia University with several years of past work
experience as a full-stack engineer. I am passionate about Functional
Programming, Distributed Systems, Compiler Design, and Natural Language
Processing. My entrepreneurship experience allows me to understand multiple
different aspects of the end-to-end product development process at startups,
and gives me the ability to take initiative on a project, turning vaguely
defined requirements into scalable and reliable solutions. I also speak 3
languages fluently (English, Sinhala, and Mandarin Chinese).
------
mbgerring
Location: San Francisco
Remote: Yes, with several years of experience
Willing to relocate: Yes, for the right job, see below
Technologies: Python & JavaScript for full stack web application development,
data visualization, data processing, scraping, etc
Résumé: [https://matthewgerring.com/resume](https://matthewgerring.com/resume)
Email: See link above
I've worked as a freelance engineer in news media for the last 4 years, and
I'm currently looking for a full-time position in climate tech. I'm looking to
level up my skills in "data science" (I understand engineering and data
visualization well, but not the math), and contribute my tech, leadership, and
organizing skills to any project working on clean energy or climate change.
Remote or Bay Area preferred, but I am willing to relocate for the opportunity
to contribute in a foundational way to a promising project.
------
greenie_beans
Location: Birmingham, AL
Remote: Yes (Remote preferred, unless in Alabama)
Willing to relocate: Yes
Technologies:
• Languages: JavaScript, GraphQL, Python, Ruby, HTML, CSS
• Frameworks: Rails, NodeJS/Express, React, Redux
• Etc: AWS, Heroku
I can work across the stack.
Current work in progress: https://mississippicovid.com.
It's a ui for tracking COVID-19 cases in Mississippi,
but also has an open api for other states.
Another recent side project: https://highlighter.online
a browser extension that saves "highlights" to an API,
so readers can collect notable passages of text.
GitHub: https://github.com/smcalilly
LinkedIn: https://www.linkedin.com/in/sam-mcalilly/
Email: [email protected]
------
lkhecke
Location: Lorient, France
Remote: Yes
Willing to relocate: Yes
Technologies: JavaScript, React, Angular, Node, Redux, C#, HTML, CSS,Sass/SCSS
Résumé/CV: [https://www.lilyhecke.com](https://www.lilyhecke.com)
[https://www.linkedin.com/in/lily-hecke/](https://www.linkedin.com/in/lily-
hecke/) (For a copy of my full resume, send me an email!)
Email: [email protected]
Hello, my name is Lily! I’m a creative front-end developer with industry
experience building websites and web applications. I specialize in JavaScript
and have professional experience working with Angular, CSS and C#. I also have
experience working with React and Sass/SCSS.
------
tomiplaz
Location: Croatia
Remote: Yes
Willing to relocate: Depends when and where
Technologies: JavaScript, React, NodeJS, Angular,
TypeScript, NextJS, Redux, RxJS, Jest, Chai, GraphQL,
HTML, CSS, Sass, PHP, Laravel, Python, Django, MySQL,
PostgreSQL, Git, Docker, Heroku, CircleCI, AWS
Résumé/CV:
https://tomiplaz.xyz/cv.pdf
https://www.linkedin.com/in/tomislav-plazonic-3b45261a3/
Email: [email protected]
Hi. I'm a full stack web dev and software engineer from Croatia. Most of my
experience is working on SPAs and RESTful APIs. I have some dev ops experience
as well. Lately I've been doing deep learning specialization on Coursera. I am
looking for either full-time or part-time remote work. Potentially willing to
relocate.
------
vicio
Location: Palermo, Italy
Remote: Yes
Willing to relocate: Maybe
Technologies: Python, Machine Learning Libraries (NumPy, Scikit-learn, Pandas,
PyTorch, TensorFlow, Keras), Web Application Frameworks (Flask, Django),
JavaScript, Angular, NodeJs, MongoDB, MySQL, PostgreSQL, API’s, Google Cloud
Platform, AWS, Micorservices, Docker, Bash, Git
Résumé/CV:
[https://drive.google.com/open?id=1-7dpLEKTSrxoJAiH3b1uU6cGKv...](https://drive.google.com/open?id=1-7dpLEKTSrxoJAiH3b1uU6cGKvNnQtk8)
Email: [email protected]
\----------------------------------------------------------
Hi, I’m Vincenzo, a Machine Learning Engineer with 2+ years experience in
FinTech and Industry 4.0. I love resolve problems and build tools that help me
do that, moving fast and iterate over to optimize. I’m looking to explore new
opportunities with great people whether it be project based or something more.
------
en3r0
Location: Mansfield, Ohio
Remote: Yes
Willing to relocate: No
Technologies: SEO, Remote Team Management, ROI Focused Digital Strategy,
Technical SEO Analysis, Content Creation and Outreach, Thorough Keyword
Research, Google Analytics and Adwords, Front-End Web Development
Résumé/CV:
[https://www.linkedin.com/in/dustinmontgomery/](https://www.linkedin.com/in/dustinmontgomery/)
Email: montgomery.dustin [AT] gmail {DOT} com
I take SEO and organic growth seriously. I have over six years of experience
working in SEO specific roles. I am able to continue organic growth for
clients who already have thousands of pages, some increasing over 100%. I also
take clients from nothing to ~10,000 pageviews in six months time. This is
done with a combination of Ahrefs, spreadsheets, and a well planned content
strategy - three of my favorite things.
------
sinisamikulic
Frontend engineer and web consultant with 8 years of experience in highly
successful and fast-growing startups across San Francisco and Berlin
([https://smikulic.com/#work](https://smikulic.com/#work)).
My strengths are in UI/UX product development and frontend infrastructure.
Looking for part-time engagement to help build your product.
\---
Location: Croatia, Europe
Remote: Yes
Willing to relocate: No
Technologies: JavaScript (React, Redux, TypeScript, Node.js, Webpack),
GraphQL, Ruby/Rails
Website: [https://smikulic.com](https://smikulic.com)
LinkedIn:
[https://www.linkedin.com/in/sinisamikulic](https://www.linkedin.com/in/sinisamikulic)
Email: [email protected]
\---
Sample project I co-founded — [https://movieo.me/](https://movieo.me/)
------
juliogreff
Location: Amsterdam, NL Remote: Yes, preferred Willing to Relocate: No
Technologies: Golang, Docker, Kubernetes, Ruby, JavaScript Resume:
[https://www.dropbox.com/s/f0n6u5lnhzzuscd/cv.pages.pdf?dl=0](https://www.dropbox.com/s/f0n6u5lnhzzuscd/cv.pages.pdf?dl=0)
Email: juliogreff [at] gmail
Software engineer with over 10 years of experience building web products, from
content management systems to complex and highly reliable transactional APIs
for integration with hundreds of third-party software vendors and handling
billions of operations a day. Proficient in both starting up greenfield
development and revitalizing legacy systems. I'm slowly finding my way lower
in the stack, and nowadays you can also find me writing Kubernetes
controllers.
------
astangl
Location: St. Louis, MO
Remote: Yes
Willing to relocate: No, but open to occasional travel
Technologies: Scala, Java, JavaScript, Akka, Spark, machine learning, AWS, S3,
SWF, EC2, Docker, Kubernetes, React, Jenkins, Kafka, PostgreSQL, Clojure, C++,
DevOps, microservices
Résumé/CV: [https://alex-stangl-resume.netlify.com](https://alex-stangl-
resume.netlify.com)
Email: [email protected]
LinkedIn:
[https://www.linkedin.com/in/alexstangl](https://www.linkedin.com/in/alexstangl)
GitHub: [https://github.com/astangl](https://github.com/astangl)
I'm a senior software engineer, experienced in a variety of languages and
technology stacks. I'm looking for interesting and rewarding work, especially
using modern functional programming languages such as Scala. I have experience
in developing web applications using various UI stacks, but prefer backend
development. I have experience as team lead, technical lead, and mentor. I am
especially interested in automation, striving to make life easier for both
developers and end-users.
Coworkers and friends look to me for programming advice and assistance in
solving complex problems. I relish challenging projects. I strive to write
exceptionally clean code, along with suites of thorough unit and integration
tests. I am pragmatic, and bear performance in mind, however. Multiple times
I've profiled and analyzed code and design, and identified opportunities to
speed up and/or reduce footprint by a factor of 1000x or more.
I enjoy working on interesting and challenging problems, especially science-
related ones, and on systems that impact large numbers of people. Contributing
to open source projects would be a huge plus. I have experience working
remotely, and with my background and abilities, I will be an asset to your
team.
------
tripurari001
I’m a front-end developer with 3.5+ years of experience currently working in
'ixigo' ( One of the largest online travel company in India with more than 160
million users ) I have experience in both working in a fast paced startups
like ( Caroobi and iDecorama ) and delivering modular, maintainable, stable
and performance efficient code.
Location: Gurugram ( India )
Remote: Yes
Willing to relocate: Yes
Technologies: JavaScript ( and HTML CSS ), Node, React, Svelte,
Resume/CV: [https://www.linkedin.com/in/tripurari-
shankar-91907189/](https://www.linkedin.com/in/tripurari-shankar-91907189/)
Public profile: [https://www.linkedin.com/in/tripurari-
shankar-91907189/](https://www.linkedin.com/in/tripurari-shankar-91907189/)
Email: [email protected]
------
hjbannister
Location: London
Remote: Available
Willing to relocate: No
Technologies: Java, Spring Boot, JavaScript, Ember.JS, Kubernetes, Unity,
Virtual Reality, AWS, GCP
Résumé/CV:
[https://bannisters.co.nz/haydn/assets/Haydn_Bannister_CV.pdf](https://bannisters.co.nz/haydn/assets/Haydn_Bannister_CV.pdf)
Email: [email protected]
Website: [https://bannisters.co.nz/haydn/](https://bannisters.co.nz/haydn/)
I've just moved to London from New Zealand (UK citizen), and am looking for a
new job.
Software Engineer with experience building CI/CD and DevOps tooling, Spring
Boot Microservices, Ember.JS front-ends, D3.JS data visualisations, Unity
virtual reality tools, and a bunch of other bits and pieces. Keen to learn new
stuff too! Check out my website to see some of my latest projects.
------
unixsheikh
I'm looking for new opportunities, only remote (preferably part time, but not
a must).
Location: Europe/Copenhagen
Remote: Yes
Willing to relocate: No
Technologies:
* PHP, Go, Python, C, JavaScript, HTML, CSS, XML, JSON,
SQL, Shell scripting.
* Debian/Devuan/Ubuntu, Arch, Void, Alpine, OpenBSD,
FreeBSD.
* Apache, NGINX, MySQL/MariaDB, Galera, Sphinx,
PostgreSQL, MongoDB, Redis, SQLite, OpenSSH, Git,
Mercurial, DHCP, DNSMasq, Bind, Unbound, NTP, PF,
iptables, ZFS, Btrfs, GlusterFS, NFS, Samba,
OpenSMTPD, Postfix, SpamAssassin, Dovecot, GnuPG,
rsync, ProFTPD, PureFTPd.
Website: https://unixsheikh.com
Resume/CV: Request via email
Email: [job] at [unixsheikh dot com]
------
mariocesar
Location: Bolivia | Full Stack Python Developer |
Remote: Yes, and willing to relocate
Technologies: Django, aiohttp, Python, Docker, Ansible, JavaScript, ES6/7,
MongoDB, Vue, React, PostgreSQL, AWS
Résumé/CV:
[https://www.linkedin.com/in/mariocesar/](https://www.linkedin.com/in/mariocesar/)
Email: mariocesar @ humanzilla.com will send you my complete CV in PDF
I have been working remotely most of my work history, mostly for startups and
related to web based projects. 6/10 projects I have been a solo-developer,
building from ground doing sysadmin to backend and frontend work, most recent
work have been related to build ERP/CRM like apps within large teams.
You can get an idea of my coding skills, by looking at my Github profile
[https://github.com/mariocesar](https://github.com/mariocesar), I often post
code snippets in
[https://gist.github.com/mariocesar](https://gist.github.com/mariocesar)
# What is my stronger skill?
Django and python based projects. I have been working with Django so many
years that I know how to manage myself quickly to start and complete a project
quickly.
Even I have been working with React.js since their early days and have created
big production ready projects for it, VUE.js is my to-go tool at the moment.
# What are the most recent skills that I'm excited right now?
aiohttp. I have been working doing "real-time" apps with node.js and switching
to aiohttp was a production high jump getting back to python to build these
apps with aiohttp. I also have enjoyed learning Vue to make large
applications, I still enjoy React however, the internals of Vue really clicks
with me.
# Somethings that made me happy recently?
My latest Recommendation in Linkedin.
------
xTWOz
SEEKING WORK | Remote Europe
We are a small distributed development team, looking for mid-sized projects,
solving complex business problems.
Location: Belgium, Hungary, Bulgaria
Remote: only
Willing to relocate: no, but we can travel for meetings (ideally in Europe)
Technologies: Ruby on Rails, PHP, Elixir, JavaScript, Ember.js, React.js,
Angular.js, Vue.js
Résumé/CV: on request
Email: [email protected]
\---
Our experience is primarily with international non-profit organizations, where
we have helped them transform their brand or build custom
intranet/collaboration platforms to ease their daily routine. Our ethos as a
team is to never cut corners and always make the extra mile, something which
we believe differs us from many companies on the market. You can definitely
rely on a positive vibe working with us.
[https://weareevermore.com/](https://weareevermore.com/)
------
elliotbnvl
Location: Providence, Rhode Island.
Remote: I have worked remotely for six years -- yes.
Willing to relocate: no.
Technologies: modern full stack development and design -- React, Redux, MobX,
Next.js, Gatsby, Node.js, SEO, copywriting, email campaigns, AWS, Firebase,
Sketch, Figma, Mailchimp.
Résumé/CV: Please email me and I'll send it over!
Email: [email protected]
I'm a marketing consultant and full-stack designer/developer. I have a
background in digital marketing (I ran an SEO company for almost three years)
and over six years of experience doing full-stack web development, from
greenfield applications to large enterprise codebases to my own SaaS projects.
You can learn more about me at my website,
[https://elliotbonneville.com](https://elliotbonneville.com)
------
devbug
Location: Vancouver, Canada
Remote: Yes (done it before), or On-Site
Willing to relocate: No
Technologies:
C/C++, Python/Ruby, Erlang/Elixir, Java, and HTML/CSS/JavaScript
MySQL/PostgreSQL, Redis, BigQuery, BigTable, ElasticSearch, RabbitMQ
Win32/Linux/BSD, AWS/GCP, Docker/Kubernetes, Scrapy/numpy/pandas
OpenGL, Direct3D 11, WebAssembly
Résumé/CV: https://mtwilliams.io/#cv
Email: [email protected]
Looking for systems engineering and backend engineering roles.
Experienced in building distributed systems that operate at scale. Most
recently, was the only data engineer for 15 million user video game that
routinely saw 1,000-10,000+ req/s per microservice.
~~~
zekigunay
Do you have any embedded experience, i.e. nVidia Jetson Nano?
------
vangelists
Location: Greece
Remote: No
Willing to relocate: Definitely (Europe)
Technologies: Modern C++, LLDB / LLVM, C, JavaScript
Résumé/CV: [https://www.vangelists.com](https://www.vangelists.com)
Email: [email protected]
Just finished my Master's in Computer Science and Engineering, in the context
of which I created a Proof of Concept for Live Reverse Debugging in LLDB
([https://github.com/vangelists/llvm-
project](https://github.com/vangelists/llvm-project)).
I am interested in opportunities in compilers, debuggers, managed runtimes or
other interesting C++ projects, although I am willing to explore new
applications and languages (especially Swift and possibly Rust).
------
AndroidJedi
Location: California
Remote: Yes
Willing to relocate: No
Technologies: Android Development, Object Oriented Development, Android SDK,
Android Studio, Eclipse IDE, ADB, Java, C/C++, SQLite, XML, HTML, CSS, Git and
Linux.
I develop Android apps for phones and tablets. I have published apps in the
Google Play store. I have full life cycle software development experience,
including: product concept development, product design, project planning,
research and development, algorithm development, programming, testing,
debugging, publishing apps to the Google Play store and app maintenance.
Email and Resume/CV:
[http://compxpressinc.com/docs/kpcv.html](http://compxpressinc.com/docs/kpcv.html)
Website: [http://compxpressinc.com](http://compxpressinc.com)
------
otoya
Location: Tokyo or Saitama Area, Japan
Remote: Yes but would like a working visa for japan.
Willing to relocate: No
Technologies: Python, Java, JavaScript, Git, Docker, Nginx, Server/Network
Administration, Linux, Bash, CTF experience
Résumé/CV:
[https://drive.google.com/file/d/1_jv3xLyFzXENnL4dnjWS3RRWhpo...](https://drive.google.com/file/d/1_jv3xLyFzXENnL4dnjWS3RRWhpoRDss-/view?usp=sharing)
Email: hn_hire [at] cachemiss [dot] de
\-------------
After graduating with a Master's Degree in IT-Security in Germany I moved to
Japan, where I now would like to apply my knowledge acquired through my
studies and part time jobs.
I'm interested in part-time or full-time positions in IT-Security or as an
Administrator, Software Engineer/Developer or Software Tester but also open to
other interesting opportunities.
------
prashant93y
Location: New Delhi, India
Remote: Yes
Willing to relocate: Yes
Technologies: ASP.Net MVC, Angular 6, Web API 2, Entity Framework, C#, MS SQL
Server, CSS, HTML5, JS, Python, Design Patterns, Algorithms and Data
Structures, Azure Dev Ops, TFS, Git
Resume/CV: [https://drive.google.com/file/d/13f3d4omzIBbHzBrvj2fT_Yu-
dFd...](https://drive.google.com/file/d/13f3d4omzIBbHzBrvj2fT_Yu-
dFdYVd5r/view?usp=sharing)
LinkedIn:
[https://www.linkedin.com/in/prashant93y/](https://www.linkedin.com/in/prashant93y/)
Email: [email protected]
I'm a Software Engineer with a focus on the backend, but open to full-stack
opportunities. I enjoy building microservice architecture applications with
cloud-based infrastructure (mostly Azure).
------
dtft
Location: Fully Remote (PT-ET Timezones)
Remote: Yes
Willing to reloacte: No need!
Technologies: Python / Flask - React - AWS (Serverless w/ Lambda) - CHOOSE
YOUR TOOL
Email: maddiec at postscript dot io
Description: Postscript.io (YC W19) is hiring Full-time Product Engineers
(Full Stack)
Postscript is a fully remote team of 20 looking for help in solving complex
problems like real-time streaming data (1000's of events per second) on the
back end and beautiful, simple ways of interacting with that data on the front
end. We help ecommerce companies stay in touch with their customers (customer
service, order management, and other notifications via text messaging).
We're scrappy hackers searching for similarly hungry individuals -- growing
10% every month. We love LEARNING & BUILDING and we want every one of our
engineers to leave us ready to start their own company.
------
mysticlabs
Location: Napa, CA / Bay Area
Remote: Yes - 15 years experience remote managing teams of up to 18 people
Willing to relocate: Maybe
Technologies: Cloud, devops, Docker, open source, WordPress, frontend.
Résumé/CV: [https://trentlapinski.com/trent-lapinski-
resume/](https://trentlapinski.com/trent-lapinski-resume/)
Email: [email protected]
Former startup CEO and VP. Bootstrapped a startup to $1M in revenue then sold
it for an exit. My latest startup just had our previously committed funding
pulled due to the global pandemic costing me my VP position.
Majority of experience is in business development, sales, product marketing,
remote team management, and product development. Highly technical, former
frontend coder, but now more focused on the business, marketing, scalability,
and lead generation side of things.
------
wwweston
Location: Los Angeles CA
Remote: yes
Willing to relocate: post-pandemic (special consideration given inside
California or the Wasatch Front).
Tech/Skills: JavaScript, PHP, and Python are the freshest syntaxes in my head,
I've also built things in C, Go, Java, Perl, Prolog, and Ruby; RDBMS Modeling
& Queries (MySQL, PostgreSQL, SQLite); API design; strong CSS
formatting/layout and general pre-2015 front-end skills, just learning how to
orient apps around React. Good with SCM, MVC, TDD, OOP, etc. Math undergrad,
some product, UX, and human factors experience. Especially interested in
working in Clojure, Elixir, Elm, or Rust, or projects with a natural language
processing domain.
Resume: [https://tinyurl.com/wcores](https://tinyurl.com/wcores)
Email: whn (a) canncentral ⋅ org
------
TiagoDuarte
Location: Portugal, Europe
Remote: Yes (Remote only)
Willing to relocate: No
Technologies: React, HTML, CSS, JavaScript (ES6+), Next.js, Gatsby.js, Redux,
MobX, GraphQL, Styled Components, Emotion, PostCSS, OOCSS, SMACSS, Bootstrap,
Figma, Sketch, Node.js
Résumé:
[https://tiagoduarte.com/static/resume.pdf](https://tiagoduarte.com/static/resume.pdf)
Email: [email protected]
GitHub: [https://github.com/HelloTiago](https://github.com/HelloTiago)
I'm a seasoned front-end developer with extensive experience working with both
designers and backend developers to implement modern and performant UIs. I
enjoy working in a fast paced environment and preferably in small teams, but I
don't shy away from being part of a large team.
------
omar_elrefaei
Location: Ontario, Canada
Remote: Yes
Willing to relocate: Yes, after this shenanigans
Technologies: Python, Numpy, Matlab, Java, R, Bash, Git, Linux administration,
Scripting and automation, Web scarping
Knowledge: Silicon fabrication, Engineering design process, Numerical
analysis, Circuits, Material science
Résumé/CV: [https://omar-elrefaei.github.io/Resume-
Omar_Elrefaei.pdf](https://omar-elrefaei.github.io/Resume-Omar_Elrefaei.pdf)
Email: in resume
Education: Candidate for BASc in Nanotechnology Engineering @ uWaterloo
Looking For: a 4 months internship (coop) as a part of my engineering degree.
Open to per-hour contract, full, or part-time. Expected salary to be close to
Ontario's min wadge, about $11USD/hour
Github: [https://github.com/Omar-Elrefaei](https://github.com/Omar-Elrefaei)
------
pdsouza
Hello! I'm a full-stack software engineer specializing in mobile apps.
Location: Northern VA / Washington D.C.
Remote: Yes
Willing to relocate: No
Technologies: React Native, React/Redux, Android, HTML/CSS, Vue.js, Node.js,
JavaScript, Clojure, Go, Java, C, Bash scripting, AWS, GCP, Docker,
Kubernetes, Jenkins, Embedded Linux, Web scraping, Git, OSS licensing and
maintainership
Résumé/CV:
[https://preetam.io/papers/resume_pdsouza.pdf](https://preetam.io/papers/resume_pdsouza.pdf)
LinkedIn:
[https://www.linkedin.com/in/pjdsouza/](https://www.linkedin.com/in/pjdsouza/)
GitHub: [https://github.com/pdsouza](https://github.com/pdsouza)
Email: preetamjdsouza AT gmail DOT com
------
smalheiser
Location: San Diego, CA Remote: Yes Willing to relocate: Yes Overview: Public
Relations and Communications pro with 15+ years remote, in-house and agency
leadership supporting company visibility, growth and profitability.
Technologies: Standard PR/Media/Content/Social/Community/Communications tools
& platforms Résumé/CV:
[https://drive.google.com/file/d/1oR_SgeyZ5FRqiGcUrjtDsV8tfGh...](https://drive.google.com/file/d/1oR_SgeyZ5FRqiGcUrjtDsV8tfGhlHsa7/view?usp=sharing)
LinkedIn: www.linkedin.com/in/smalheiser Email: [email protected]
------
cyanic
Location: Europe (mostly)
Remote: Yes (Preferred)
Willing to relocate: For the right opportunity
Technologies: Go, Python, C, JavaScript, Linux, Bash, SQL, HTML, CSS, React, Docker, and more
Résumé/CV: Upon request
Email: hired+hn at cyanic dot gr
\-----
Principal software architect and engineer with a T-shaped personality, complex
problem-solving skills and more than 7 years of professional experience across
the whole stack. I'm a startup co-founder and project leader who built highly
profitable products from scratch. My coding is well thought-out and
intentional. I'm looking for a chance to solve significant and challenging
engineering problems and an opportunity to contribute to every aspect of
product development.
------
vsmoraes
Location: São Paulo - Brazil
Remote: Yes
Willing to relocate: Yes
Technologies: PHP, Go, Javascript, Node.js, Typescript, MySQL/MariaDB,
Postgres, MongoDB, Redis, AWS, GCP, Team Management, Agile practices, DevOps
culture, Docker, Kubernetes, Traefik, Linux, Python. Several frameworks were
used with the mentioned languages.
Github: [http://github.com/vsmoraes](http://github.com/vsmoraes)
Linkedin:
[https://www.linkedin.com/in/vsmoraes](https://www.linkedin.com/in/vsmoraes)
Email: [email protected]
\--
Profile:
Full stack engineer (more focus on the backend side) with a lot of experience
working with PHP (almost 15 years) and Go (2+ years), currently working with a
node.js/typescript stack.
In love with the DevOps culture and a Linux enthusiast since 2000; Automate
all the things is my moto.
------
kwalkguru
Location: San Francisco/Bay Area
Remote: Open to remote
Willing to relocate: Open to relocation
Linkedin:
[https://www.linkedin.com/in/kevinwgutierrez](https://www.linkedin.com/in/kevinwgutierrez)
Github:
[https://www.github.com/kevinwgutierrez](https://www.github.com/kevinwgutierrez)
Email: [email protected]
Technologies:
\- Deep knowledge of Javascript, NodeJS, React.js, MongoDB
\- Good knowledge of AWS (EC2/S3), GraphQL, Cassandra, PostgreSQL, HTML, CSS
\- Basic knowledge of MySQL, TypeScript
Resume:
[https://drive.google.com/file/d/15LO2-qnxSqAB8x9Amq4mqoDGhqE...](https://drive.google.com/file/d/15LO2-qnxSqAB8x9Amq4mqoDGhqEGpGbm/view?usp=sharing)
------
azdv
Remote: Yes !
Willing to relocate: Maybe
Technologies:
* Cloud technologies (AWS/Azure/GCP) - a lot of Terraform work as of late. Recently automated GPU-based infrastructure for a MedTech startup (fun times).
* NodeJS/Meteor/SailsJS
* Serverless (going heavy on that one)
* Crypto/Blockchain - building Crypto infrastructure (multiple Blockchains), customized libraries and APIs, as well as front-end (MetaMask) solutions.
* Wordpress/CodeIgniter/Yii/Drupal (Components, Hacks, Themes) - less motivated, unless truly cutting edge (or WP VIP projects)
* CI & Unit testing - Jenkins, Mocha & Karma for JS, Toast for PHP, as well as Selenium
* Django (general Python too) - to a lesser extent
Resume: Upon request
Email: dev (at) azdv.co
Looking for Challenging projects. Most recently worked extensively with
Serverless & AWS APIs, building cloud-related prototypes, before that worked
as a cloud automation specialist
------
Evgeniuz
Location: Ukraine
Remote: yes, preferred
Willing to relocate: no, but depends on company;
Technologies: Go, JavaScript/TypeScript, Python, NodeJS, React, Django, PostgreSQL, MongoDB, Docker, Kubernetes
Résumé/CV: https://drive.google.com/file/d/1kW28ngKjg4HIA48wyyj94x6kYP-SWsRl/view
Email: [email protected]
I'm a software developer with 8 years of experience in a variety of both
backend and frontend technologies/frameworks. Looking for a remote position or
part-time remote consulting opportunity (may consider relocation after travel
restrictions due to quarantine are lifted).
Love learning new things (currently mastering Rust) and solving hard problems
(optimization, debugging etc.).
------
olli101
Location: Austin, TX Remote: Yes Willing to Relocate: Yes to NYC/SF or LA for
the right opportunity. Just tried relocating to SEA but it wasn't a good fit.
LinkedIn: [https://bit.ly/31pAB8c](https://bit.ly/31pAB8c)
Email: [email protected]
\---
Hi there. I'm a product management and design leader with 20 years of
professional experience, researching, concepting, designing and launching
digital products for global audiences both here in the US and in the UK.
Previous companies include: AKQA, Amazon, AT&T, BBC, The Famous Group, Fox
News, Live Nation, and TriNet. That means CAC, ARPU and LTV as well as UX, VD,
IA and FYI, I'm OTT about UCD. TMI? Looking for full time positions doing
web/responsible/mobile for B2B or B2C.
Thanks for reading.
------
KristinaStoj
Front End React Developer looking for a job in Bay Area
Location: San Francisco, CA Remote: Yes Willing to relocate: No Technologies:
JavaScript, ES6/7/8, jQuery, JSON, AJAX, React, Redux, RESTful API's, CSS,
HTML, Bootstrap, Jest, Enzyme, Photoshop Interested in: Front End Development,
UI\UX
Website/Résumé/CV:
[https://gjozevkristina.netlify.com/](https://gjozevkristina.netlify.com/)
Email: [email protected]
Hi there, my name is Kristina! I am a front end developer who is passionate
and knowledgeable about both the visual and technical aspects of creating an
app. Highly motivated working on projects with a team and building powerful
products that will provide intuitive and beautiful user experiences.
~~~
hbroadbent
hey, I just wanted to say that I checked out your site and resume and both
look great! I'm not hiring or anything but just wanted to wish you all the
best, it's pretty clear that your quality of work is very high so I'm sure
you'll have no trouble finding the perfect role. keep it up!
~~~
KristinaStoj
Thanks for reaching out, I appreciate it! If you have anyone around who is
looking for passionate front end developer feel free to share my contact :)
------
dsiano
Location: Santa Barbara, California
Remote: Yes
Willing to relocate: Yes
Technologies: Design theory, Adobe CC (InDesign, Illustrator, Photoshop,
Lightroom, XD, After Effects, Audition, Premiere, Dreamweaver), HTML, CSS,
Sketch, Omnigraffle, SketchUp, Fusion360, MS Office Suite, Google
Drive/Sheets/Analytics, Mail Chimp, Constant Contact, Klaviyo, Social media,
Hootsuite, WordPress, Shopify, Salesforce, Dubsado, Trello, Asana, Wrike
Résumé: [https://www.dsiano.com/;](https://www.dsiano.com/;)
[https://www.linkedin.com/in/daniellesiano/](https://www.linkedin.com/in/daniellesiano/)
Email: [email protected]
I'm a freelance graphic designer and marketing consultant with over 15 years
of experience.
------
ramix
Location: Latvia, Riga GMT+2
Remote: Yes
Willing to relocate: No
Technologies: PHP,Laravel,Javascript,Ember.js,Html,Css,Lucee,Sys admin,
websockets.
Resume/CV:
[https://drive.google.com/file/d/1vxdncAETa8S7I-VQQoygIQGNVa1...](https://drive.google.com/file/d/1vxdncAETa8S7I-VQQoygIQGNVa1P8tWO/view?usp=sharing)
Portfolio - www.raimondsplume.com
Email: [email protected]
Hello,
I am remote web developer from Latvia seeking for remote role. I have over 4
years of experience with PHP(Laravel), Javascript(Ember), Html, CSS, SASS,
ColdFusion(FW/1), system administration and other technologies. Here you can
see my portfolio - www.raimondsplume.com, but that is not it, I have other
cool stuff that I can show if needed. If you are interested, let me know so we
can arrange a chat or call. Thanks!
------
printfhn
Location: East Asia (UTC+8)
Remote: Yes!
Willing to relocate: not in the pandemic
Technologies: Ruby on Rails, Bulma CSS, SQL database with ORM, Python (Machine
Learning, one published SCI paper)
Résumé/CV: on request
Email: [email protected]
I'm a self-taught programmer and a graduate student (this is my last year at
school). Looking for an Entry-Level / Junior-Level web development job
(preferably Ruby on Rails). I have a few demo apps running on Heroku, you can
take a look at my Github:
[https://github.com/printfinn](https://github.com/printfinn) to check it out.
Although I'm not experienced, I'm pretty good at looking for solutions on the
Internet (Github, SO). Please reach out to me if you want some new blood on
your dev team, salary is not a big concern.
------
asifjamil
Location: Maryland
Remote: yes
Willing to relocate:yes
Technologies: Python, Matlab, R, AWS, Javascript, Ruby, Rails
Resume:
[https://drive.google.com/file/d/1Zu54-pkv3LNYNbq2pGW5lYGCeON...](https://drive.google.com/file/d/1Zu54-pkv3LNYNbq2pGW5lYGCeON-0KjS/view?usp=sharing)
Email: [email protected]
Profile: Computational neuroscientist with experience in neuromodulation and
data science. Have worked a lot with high density EEG and fMRI in combination
with brain stimulation (TMS, tACS, tDCS) to design novel neuromodulation
protocols, formulate pipelines for data analyses, as well as experimenting
with interfacing neuromodulation with the visuomotor system. Lots of
experience in working internationally (US, UK, Germany) with diverse multi-
disciplinary groups.
------
hayri
Location: Istanbul
Remote: yes
Willing to relocate: yes
Technologies: Python, JS, PostgreSQL, MongoDB, Redis, Django, Flask, Node.js,
Express, Git, AWS
Github: [https://github.com/selimslab/](https://github.com/selimslab/)
Website: [https://selimslab.github.io/](https://selimslab.github.io/)
Linkedin: [https://www.linkedin.com/in/time](https://www.linkedin.com/in/time)
Résumé:[https://drive.google.com/file/d/1EDyU3GaJCeTdlLreAMP55zN-
KA_...](https://drive.google.com/file/d/1EDyU3GaJCeTdlLreAMP55zN-
KA_Tfoc4/view?usp=sharing)
Email: [email protected]
Junior backend engineer with 2 years of experience, coding for 7 years
------
shaggyfrog
SEEKING WORK | Vancouver, BC, Canada | Remote OK
Willing to Relocate: No
Technologies: Everything. Last 3-4 years: Python (Django), Kotlin, Java
(Spring), JavaScript. Also last 11 years: iOS/OSX (C/C++/Objective-C), Bash,
Perl. MSc in AI (heuristic search).
LinkedIn:
[https://www.linkedin.com/in/thomashauk](https://www.linkedin.com/in/thomashauk)
Stack Overflow: [https://stackoverflow.com/users/161161/shaggy-
frog](https://stackoverflow.com/users/161161/shaggy-frog)
Résumé/CV: See LinkedIn and/or request via e-mail
Email: [email protected]
First Computer: Atari 800 (Logo and BASIC)
Cake: YES
Copy & Paste Messages: no thank you
I'm a proud generalist. I add value. I care about my work. I get stuff done. I
deliver. Send me an e-mail!
------
k33n
Location: Atlanta, GA
Remote: Yes
Willing to Relocate: Yes
Technologies: JS (Browser/Node), TypeScript, RxJS, Angular 2-9, React, Ruby,
Python, Terraform, Saltstack
Resume/CV:
[https://www.mikekeen.com/resume.pdf](https://www.mikekeen.com/resume.pdf)
Email: [email protected]
I'm a full stack developer with 15 years of experience in various
languages/frameworks. For the past 5 years I've been working almost
exclusively in Angular 2+ with TypeScript and tons of RxJS. I've worked in
early stage startups, and larger consulting companies. I love writing
software, designing systems, implementing perfect user interfaces, learning
new things, and mentoring/training junior engineers. Seeking remote Senior
Engineer positions, but open to on-site as well.
------
benzesandbetter
\------
Software engineer focused in the Python/Django ecosystem. I've designed,
maintained, and supported mission-critical applications and services for
clients including Cisco, Eli Lilly, NIH, Stanford School of Medicine, as well
as startups and several federal agencies.
\------
Location: California / Amsterdam (US Citizen)
Remote: Yes (100%)
Willing to relocate: No thanks
Technologies: Python, Django, Flask, AWS, Postgres, SQLAlchemy, Plone, JS, Linux, MongoDB, Cassandra, Spark, Jupyter, R
Email: [email protected]
[http://davidsiedband.com](http://davidsiedband.com)
[https://tinyurl.com/siebo-cv2020](https://tinyurl.com/siebo-cv2020)
------
imsofuture
Role: Engineering Manager
Location: Montana, US
Remote: Yes
Willing to relocate: No
Technologies: Golang, Kubernetes, all sorts of PaaS/IaaS
Resume:
[https://jeffzellner.com/resume.pdf](https://jeffzellner.com/resume.pdf)
LinkedIn:
[https://www.linkedin.com/in/jzellner](https://www.linkedin.com/in/jzellner)
Github: [https://github.com/sofuture](https://github.com/sofuture)
Email: [email protected]
Extensive backend, Kubernetes, Golang, SRE/Ops experience. Looking for EM role
ideally in similar or adjacent space. Have been remote as both an IC and
manager for nearly a decade. I like startups!
------
wildlingjill
Location: San Jose/SF Bay Area
Remote: Yes
Willing to relocate: No
Technologies: JavaScript, React/Redux, HTML5/CSS3, Python, Flask
Résumé/CV: http://jillcrobinson.com/static/docs/JillRobinsonResumeApr2020.pdf
Email: [email protected]
I'm a former Microbiologist turned Frontend-focused Engineer with 4 years of
experience working in the SF Bay Area. I've been working in a fast-paced
startup environment for the last year and I'm looking for a bigger company to
cut my teeth and get experience of working with different types of people.
Please reach out if you think I could be a good fit for your role. Thanks!
------
EGreg
Location: NYC
Remote: Yes of course, in fact I prefer it
Willing to relocate: After the current crisis and quarantines end
Technologies:
Web (HTML5, ES6 JS, Web Components, Subtle Crypto, WebRTC, IndexedDB, Web
Notifications, and many other features of the modern Web)
Backend (PHP, MySQL, Node.js, Linux administration, NGinX, Apache, AWS etc.)
PhoneGap / Cordova (Contacts, Notifications, creating native mobile apps
starting from web apps, putting them into the stores etc.)
Management: I have experience managing teams, motivating developers,
architecting products, doing QA etc.
Resumé/CV: [https://qbix.com/resume.html](https://qbix.com/resume.html) and
[https://qbix.com/resume.pdf](https://qbix.com/resume.pdf)
Email: greg @ the domain hosting the resume above
------
kntoukakis
Location: EU (GMT+2)
Remote: Only
Willing to relocate: No
Technologies: Technical SEO
Résumé/CV:
[https://www.linkedin.com/in/kntoukakis/](https://www.linkedin.com/in/kntoukakis/)
Email: [email protected]
Twitter: [https://twitter.com/kntoukakis](https://twitter.com/kntoukakis)
I help my clients solve tough SEO problems and make the right decisions about
their websites and content.
My expertise covers minimizing the impact of website migrations, SEO for
multi-domain website architectures (ex. China), finding dynamic rendering
problems and more.
From creating a search strategy to reverse-engineering the rankings of your
competitors, planning better content, and optimizing your web-pages, I offer a
process-oriented and transparent approach.
------
arkades
Location: New York Remote: Yes Willing to relocate: Not at this time
Technologies: N/A Email: [email protected]
Résumé/CV: I'm a physician with a grad degree in health policy, with some grad
work (and a pub) in stats. I've long experience working on the reform side of
healthcare, having been a Chief of Staff for the largest Accountable Care
Organization company in the US, and done ops consulting in a similar vein
since. I currently have a consulting gig wrapping up, so if anyone is working
on something to meaningfully improve healthcare and is looking for someone
with clinical, operational, and policy experience, I'd love to have a
conversation.
------
diegoeche
Location: Berlin, Germany Remote: Yes (Remote Only) Willing to Relocate: No
Technologies: RoR, Python/Django, Terraform, VueJS, AWS, F#, Erlang, Elixir
Resume/CV:
[https://www.linkedin.com/in/diegoeche/](https://www.linkedin.com/in/diegoeche/)
Email: [email protected] Github:
[https://github.com/diegoeche](https://github.com/diegoeche)
I've been doing fullstack for the last 10 years. Mostly Ruby but lately I've
been enjoying working with Python and Django. I've done F#, Programming
Language Design, and I consider myself mostly a Polyglot Generalist.
------
snaveen
Location: Reston, VA
Remote: Yes
Willing to relocate: No
Technologies: Kubernetes, Prometheus, Typescript, Go, Pulumi, Cloud-native,
Linux
Resume:
[https://www.dropbox.com/s/sosts1ovu9r6h8j/NaveenSrinivasan.p...](https://www.dropbox.com/s/sosts1ovu9r6h8j/NaveenSrinivasan.pdf?dl=0)
LinkedIn:
[https://www.linkedin.com/in/naveensrinivasan/](https://www.linkedin.com/in/naveensrinivasan/)
Github:
[https://github.com/naveensrinivasan](https://github.com/naveensrinivasan)
Email: [email protected]
I am now working as a cloud architect also an individual contributor who
codes. In the past, I was part of the Software Engineering building
applications.
------
mr-developer
Hello, I'm Chethan Bhat. I'm a full stack developer with 4 years of
experience.
Location: Mangalore
Remote: Yes
Willing to relocate: No
Technologies
> HTML, CSS, JavaScript
> React (with hooks + context api), Redux (State Management)
> Node + Express (for backend apis)
> PHP
> MongoDB, MySQL, Firebase
Website: [https://chethanbhat.com/](https://chethanbhat.com/)
About me:
[https://www.reddit.com/r/forhire/comments/frvpwc/for_hire_fr...](https://www.reddit.com/r/forhire/comments/frvpwc/for_hire_freelance_web_developer_25hr_websites/)
LinkedIn:
[https://www.linkedin.com/in/chethanbhat90/](https://www.linkedin.com/in/chethanbhat90/)
Email: [email protected], [email protected]
------
67g
Location Berlin, DE
Remote Yes
Relocate Maybe
Tech * TS, Next, GraphQL, Jest, node
* React, Redux, all major libs
* k8s on bare-metal, Docker
* Mongo, Postgres with & w/o ORMs
* exp. w/ high traffic sites + HA
CV on request
I speak English perfect, German native
I like Zealios v2, nvim, tmux
________
/ /____ |
/ /_ / /_ _
Email | '_ \ / / _` |@protonmail.com
| (_) / / (_| |
\___/_/ \__, |
__/ |
|___/
------
subu1729
Location:INDIA/Bangalore
Remote:Yes
Willing to relocate:Not immediately
Technologies:Python, golang and c. Azure
Résumé/CV:https://drive.google.com/open?id=1ONNNO8EzMklrQ6UPfRl1QXo3i_OjjrFD
Email:subramanivmk(at)gmail.com
Hi I'm subramanian, I'm at my early stage of my career working in embedded
domain, now want to get into backend engineering after getting a taste of it.
I'm willing to learn any new technology/framework/stack/language. Would love
to learn a lot from experienced devs and create exciting new things.
Interested in the intersection on hardware and software.I've recently started
experimenting with flutter too.
------
mstaoru
Location: Shanghai, China (expat)
Remote: yes (12 years fully remote), can work another TZ if needed
Willing to relocate: no
Technologies: Python/Django, SQL/NoSQL, ELK, AI/ML stack, DevOps (Docker,
k8s), Vue.js, simple hardware (RPi stack), CHINA tech infrastructure: Wechat,
mini-apps, Aliyun/Tencent clouds, local CDNs, colocation, regulations etc.
Resume:
[https://sea.smartmeal.cn/f/2ffcd1b540394ce385fe/](https://sea.smartmeal.cn/f/2ffcd1b540394ce385fe/)
Email: [email protected]
20+ years software and project experience, 12 years in China, founded several
businesses as a hands-on CTO, ex-team lead and CTO for MLG, had projects with
Wework, Camel group, Nature Bridge etc.
Can help you set up presence and tech stack in China.
------
r00t_
Location: Pennsylvania
Remote: Yes
Willing to relocate: Under certain circumstances.
Technologies: HTML/CSS, Vanilla JavaScript, React, jQuery, ejs, handlebars.js,
MongoDB, Nodejs/Express, Git, Shell, Linux, familiarity with Ruby, Python, and
C. Currently ripping through tryhackme.com's rooms, learning various security
topics.
Love to learn, and honestly, I want to expand my skills into a professional
setting. If you have apprenticeship opportunities, I'd love to hear about them
as well.
GitHub: [https://github.com/username1001](https://github.com/username1001)
LinkedIn: [https://www.linkedin.com/in/matt-
fay/](https://www.linkedin.com/in/matt-fay/)
Email: [email protected]
------
cpclermont
Location: Montreal, QC, Canada
Remote: Yes
Willing to relocate: No
Technologies: JavaScript (ES5, ES6+), TypeScript (2+), ReactJS (13+), Service
Workers, node.js, express.js, GatsbyJS, Webpack (v1+), Grunt, Gulp, Babel
(5+), Karma, HTML5, CSS3, SASS, LESS, Mocha/chai/sinon, AWS S3, CloudFlare,
Protractor, WebdriverIO, git, GitHub, JIRA, Heroku, MongoDB, SQLite,
PostgreSQL, Clojure, ClojureScript, RabbitMQ.
Résumé/CV:
[https://www.linkedin.com/in/cpclermont/](https://www.linkedin.com/in/cpclermont/)
Email: [email protected]
\---
6 years as an independent Front-End engineer. I specialise in making React
Apps fast and delightful to go beyond business goals by using analytics to
find what to work on.
Looking for a large scale projects with a small team.
------
smrbts92
Location: Houston, TX
Remote: Yes
Willing to relocate: No
Technologies: Javascript, Vue.js & Vuex, React & Redux, React Native, C#,
Node.js, Ruby, Ruby on Rails, MongoDB, PostgreSQL, SQL, Cypress, xUnit,
Quasar, Azure DevOps, Git, Adobe Suite
Résumé/CV:
[https://stackoverflow.com/cv/samr](https://stackoverflow.com/cv/samr)
Email: [email protected]
Looking for a team to join after a coronavirus layoff. Junior full stack
developer, but I focus primarily on front-end development and UI. Have prior
years of experience working remotely if need be, but would prefer a company in
Houston.
Check out my portfolio at
[https://www.samroberts1.me/](https://www.samroberts1.me/)
------
darrenv
Location: London, UK
Remote: Yes
Willing to relocate: No
Technologies: React, Redux, Jest, Cypress, HTML, CSS, Node.js, Express,
Python, Flask, MongoDB, Docker
Résumé/CV:
[https://www.linkedin.com/in/darrenvong](https://www.linkedin.com/in/darrenvong)
Email: [email protected]
I am a full stack developer with ~3 years of professional experience working
with the range of technologies listed above.
You can also find me regularly in meetups, conferences and hackathons as I'm
keen to stay on top of the latest development trends.
I am also a regular coach/instructor in underrepresented tech communities as I
enjoy making tech more accessible for anyone who's looking to work in tech.
It's a great way to learn too!
------
bhavikkumar
Location: Auckland, New Zealand (GMT +13)
Remote: Yes
Willing to relocate: Yes (Amsterdam, Canada, Sweden, UK)
Technologies: Java, Python, Javascript, AWS, PostgreSQL
Resume:
[https://www.linkedin.com/in/bhavikk/](https://www.linkedin.com/in/bhavikk/)
Email: [email protected]
I have over 13 years of experience as a software engineer, and have worked at
both startups and large organizations. My expertise is in building scalable
backend services using AWS (API services, integration services and stream
processing). The majority of my experience is with Java, however I have built
services using NodeJS, Python and C# previously.
I have also spent time with mentoring developers to ensure I can help the
business build the best team possible.
------
its-hawk
Location: Toronto, ON, Canada
Remote: Yes (not during the pandemic but, getting a J1 should be *very* easy)
Willing to relocate: Yes
Technologies: Python, Flask, Vue.js , PostgreSQL, JavaScript, React
Résumé/CV: https://docs.google.com/document/d/1FBRqpjrQRao6n6RJ3H2G-JvzGs0gQo7CYZWNt23kR8g/edit?usp=sharing
Email: [email protected]
I'm finishing my _sophomore_ year studying CS.
I have a good grasp in full-stack development \- I would say _great_ but, I
def. have a lot to learn ... hence the whole "internship thing".
Aside from full-stack development, I am really interested in _data
engineering_.
Whatever the case, shoot me an email – let's talk.
------
djesmond
Location: Denmark
Remote: Yes
Willing to relocate: Yes
Technologies: C# .NET Core, JavaScript, React, Vue, Nodejs, docker, Azure,
Digital Ocean
Résumé/CV: [https://drive.google.com/file/d/1-8uF_w-cmk0f1Xf9wvF-
LDzh4J2...](https://drive.google.com/file/d/1-8uF_w-cmk0f1Xf9wvF-
LDzh4J2KZnuR/view?usp=sharing)
Email: hn (at) djesmond (dot) com
Graduating with my master’s degree in software engineering June 2020.
Experienced as full stack developer in both C# and JavaScript. Flexible work
hours to schedule remote work with others. I enjoy working on personal project
in my spare time to learn new languages and technologies such as a personal CI
platform. Looking for opportunities as full stack or software engineer
------
ika
Location: Tbilisi, Georgia
Remote: Yes (with 5 years of _remote_ working experience)
Willing to relocate: No
Technologies: React / Vue, JavaScript / TypeScript, GraphQL, Postgresql,
MongoDB, Node / Ruby, Ruby on Rails
Résumé/CV:
[https://iraklijani.com/resume.pdf](https://iraklijani.com/resume.pdf)
Email: [email protected]
\---
Hey, I’m Irakli, Software Engineer from Tbilisi, Georgia. I have 8 years of
experience working on scalable apps for EU, US and Georgian companies On-Site
and Remotely. I mastered my skills by working with an amazing team of
engineers and designers in different startups and companies where I learned to
write scalable and maintainable code, make pixel-perfect UI/UX and shipping
high-quality products.
------
andrewjzeller
Frontend engineer looking for an early-career position in the SF Bay Area.
Location: SF Bay Area
Remote: Yes
Willing to relocate: No
Technologies: HTML/CSS, SASS, Javascript ES6/7/8, React, Redux, Node/Express,
Next.js, Gatsby.js, Styled-Components, Web APIs, RESTful APIs, JSON, MongoDB,
CMSs, Sketch App
Résumé/CV/Portfolio: [https://zeller.io](https://zeller.io)
Email: [email protected]
\---
After working for three years as a mechanical engineer developing hardware at
startups, I shifted gears into my longtime passion of web app development. I
love building Javascript apps that are performant, elegant, and useful. I'm
particularly excited about all things JAMstack and have built several
production projects with Gatsby.js and Next.js.
------
mathman3141
I am looking for a job within data science. I have two years of analytics
experience and making reports, which includes uncovering insights that help
inform business decisions. In addition, I have a mathematical background,
which includes statistics as well as a programming background.
Location: Dallas, TX
Remote: Yes
Willing to relocate: For the right opportunity
Technologies: Python (pandas, numpy, scipy, sklearn,) R, Bash, HTML, PHP, CSS,
JavaScript, PySpark, C++, Git, AWS Redshift, PostgreSQL, Microsoft Excel, Mode
Analytics, Jupyter Notebook, Linux, Docker
Résumé/CV:
[https://www.linkedin.com/in/randallshall](https://www.linkedin.com/in/randallshall)
Email: randallhall [at] icloud.com
------
ViolentSnugglez
Location: Salt Lake City, UT, USA
Remote: Yes
Willing to relocate: Yes
Technologies:
- JavaScript: Vue/Vuex, Angular/Ngrx, React, Node and jQuery
- MongoDB, SQL
- Java
- C++
- Linux
- UI/UX
- Heroku, Google Cloud
Website:
[https://chrissannar.herokuapp.com](https://chrissannar.herokuapp.com)
Résumé/CV:
[https://chrissannar.herokuapp.com/Resume.pdf](https://chrissannar.herokuapp.com/Resume.pdf)
Email: [email protected]
I have over a years worth of Full-Stack Web Development experience as well as
currently working as a CS tutor. I have interest in learning more Cloud
technologies and have a greater interest in Educational Software.
------
hnaln
Location: Toronto, Canada
Remote: Yes
Willing to relocate: Yes
Technologies: Java, Python, C, Javascript, SQL, Django, Express, React, Spring, Node.js
Résumé/CV: https://drive.google.com/file/d/1TfsCn8LXzcHedM0QWHQP85jYidZJTFGZ/view?usp=sharing
Email: yilun.han [at] mail.utoronto.ca
I'm an university student entering my final year at the University of Toronto.
Originally I had plans to do a summer research exchange to TU Darmstadt in
Germany that was cancelled due to COVID-19. I have experience doing backend
development. Looking for an internship or any projects I could contribute to
during the summer.
------
atlex
Location: Spain.
Remote: 100%
Willing to Relocation: No.
Technologies: Automation! 20 years of Sysadmin & Netadmin. Config Management
(chef, ansible, others), Cloud (terraform etc), K8s/ECS. Devops, Infosec,
Monitoring etc. Recent interests: Large-scale reverse-tunnel out-of-band
management system, replacing MPLS with Wireguard, and experimenting with
Hashicorp Vault
People: I'm happy dealing with anyone from Execs to Help Desk folks. Love
bringing engineers from a state where they've never done Git, to submitting
PRs and coding terraform modules like Champions.
Language: Native English Speaker.
CV: [https://trull.org/alex/cv/](https://trull.org/alex/cv/)
Email: [email protected]
------
jhonatan08
Location: Regina, SK, Canada
Remote: ys
Willing to relocate: yes
Technologies: In December 2019, I completed all degree requirements for my
Ph.D. in Artificial Intelligence (AI) with a focus on probabilistic graphical
models such as Bayesian networks and deep learning models, including sum-
product networks. Researcher experience as a freelancer and more than 25
academic publications (including one AAAI). Industry experience as a Software
Engineer working with Angular/Ionic/Typescript/Serverless stack.
Résumé/CV:
[https://jhonatanoliveira.github.io/files/oliveira_resume.pdf](https://jhonatanoliveira.github.io/files/oliveira_resume.pdf)
Email: [email protected]
------
mb_72
Location: Tallinn, Estonia (currently) / Adelaide, South Australia (sometimes)
Remote: Yes
Willing to relocate: No
Technologies: MS ecosystem (C#, Azure, MS SQL Server), lots of other things
(see LI)
CV:
[https://www.linkedin.com/in/mikeboth/](https://www.linkedin.com/in/mikeboth/)
Email: [email protected]
\----
I'm a late 40's all-rounder with 15 years of remote development experience,
and a collection of past and current successful projects across many
industries, eg I developed a logistics / transport application for the largest
heavy transport company in the Baltic states. EU + AU citizenship. Interested
in helping smaller businesses solve their problems or improve profitability.
------
zquangu112z
Location: Vietnam
Remote: No
Willing to relocate: Yes
Technologies: Strong in Python, SQL, ETL, Datawarehouse. Interested in a Data
Engineer position.
Résumé/CV:
[https://docs.google.com/document/d/1DhraCSc_9w9CDpeEd4nQwHus...](https://docs.google.com/document/d/1DhraCSc_9w9CDpeEd4nQwHusrv4wNAZsCAGNzTwnYg8/edit?usp=sharing)
Github: [https://github.com/zquangu112z](https://github.com/zquangu112z)
Linkedin:
[https://www.linkedin.com/in/truongquangu/](https://www.linkedin.com/in/truongquangu/)
Email: [email protected]
------
PedroCandeias
Location: Berlin, Germany
Remote: yes
Willing to relocate: yes, to Nova Scotia Canada or Reykjavik Iceland (We've
family there)
Technologies: go, php, JS, vuejs, react, all kinds of dbs, Contentful, AWS,
anything API-based.
Résumé:
[https://www.dropbox.com/s/tt9r51l2yujxi1f/pedro%20carvalho%2...](https://www.dropbox.com/s/tt9r51l2yujxi1f/pedro%20carvalho%20resume.pdf?dl=0)
Email: [email protected]
I'm a grizzled web/backend developer with experience as manager and architect.
I picked the wrong time to quit and go travel. While looking for my next full
time position, I'm also available for contract work to contribute, architect
or manage in software delivery projects.
------
random42
Location: India
Remote: Yes
Willing to relocate: Maybe.
Technologies: Python, Django, golang, React, Big Data/NoSQL
Résumé/CV:
[https://www.linkedin.com/in/mohitranka](https://www.linkedin.com/in/mohitranka)
Email: [email protected]
Developing robust and high-quality software for over 10 years, focusing
primarily on the backend of the webstack. I care deeply about code quality,
its extensibility and the customers. I have spent most of my career so far
working with early-stage startups, but recently worked with a listed company
and tasted the associated scale.
I am looking for a permanent (preferred) or contract remote (strongly
preferred) position as a senior individual contributor or engineering manager.
------
Swagat22
Swagat Shah-
Location: Lafayette, Indiana, US
Remote: Yes
Willing to relocate: Yes
Résumé/CV: https://docs.google.com/document/d/1ema8ucEiwqKeL0XxLiNxARc_i0CmYjH00F5flUt80P8/edit?usp=sharing
LinkedIn: https://www.linkedin.com/in/swagat-shah/
Email:[email protected]
Masters in Mechanical Engineering with experience in manufacturing and quality
engineering. Trained in Lean Six Sigma & GD&T. Looking for Manufacturing/
Quality/ Process/ Mechanical Engineer roles. Available immediately.
------
urbpeti
Location: Budapest, Hungary
Remote: Yes
Willing to relocate: No
Technologies: Python, Django, Go, Javascript, Typescript, Node.js, Swift, Docker, Git, C++, Vue.js, TDD
Résumé/CV: https://www.linkedin.com/in/p%C3%A9ter-urbanovics-005869164
Email: urbpeti [at] gmail [dot] com
I'm a software engineer with 3 years experience. I like to learn new
technologies. I have experience from different roles, IOS developer (CAD
software), Web Application Security engineer, and C# desktop application
developer as well. I am developing full-stack applications as a hobby and I'm
looking for a full-stack engineer position.
------
ashniu123
Location: Pune, IN
Remote: Yes. Can travel post COVID-19
Willing to relocate: Yes
Technologies: MERN (3 years), Redis, React Native, GraphQL, Apache Thrift,
Apache Kafka, Docker, Kubernetes (Certified Kubernetes Administrator), AWS
(Certified Solutions Architect Associate). Willing to learn what is required.
Résumé/CV: [https://www.linkedin.com/in/nisheet-
sinvhal/](https://www.linkedin.com/in/nisheet-sinvhal/)
Email: nisheet1 (dot) sinvhal (at) gmail.com
Website: [https://www.nisheetsinvhal.com](https://www.nisheetsinvhal.com)
Github: [https://github.com/ashniu123](https://github.com/ashniu123)
------
lmcnulty
I'm a graduating senior at Brown University looking to start work once I
graduate in May.
Location: Reading, PA
Remote: Yes
Willing to relocate: Yes, especially to
- Boston, MA - Paris, France*
- Providence, RI - Toronto, Canada*
- New York, NY - Montreal, Canada*
- Philadelphia, PA *Need visa sponsorship
Technologies:
- JavaScript - Python
- HTML - Flask
- CSS - Java
- React - Linux
Résumé/CV: lmcnulty.gitlab.io/resume
Email: On my résumé.
------
Demiurge
Location: Orlando, FL
Remote: Yes
Willing to relocate: Not quickly
Technologies: Python, Django, PostgreSQL, PostGIS, React.js,
Redux, Web GIS, MapboxGL, Leaflet.js, GDAL, Amazon Web
Services, Docker, LXD, Linux
Resume/CV: https://drive.google.com/file/d/1juB8eIR7io98KVFYqb-F-p6M2LGN60co/view?usp=sharing
Email: [email protected]
I have 13 years of experience doing web GIS applications, visualizations,
decision support tools, remote sensing data management, as well as student
curation, project management, and consulting in academic environment.
I really want to build things that make a difference for people.
------
vladdoster
Location: Boston or Nashville Remote: Yes/No
Willing to relocate: No
Technologies: Python (since 2013), Java 8+, Docker, Devops related tech.
Resume/CV: [https://vdoster.com](https://vdoster.com)
Email: [email protected]
GitHub: [https://github.com/vladdoster/](https://github.com/vladdoster/)
WIT '19 new grad looking for work in backend / devops development. Passionate
about anything infrastructure and run a multi-node automated homelab in spare
time. Would love a chance at devops role.
Always excited to try new languages, frameworks, methodologies - you name it.
Please don't hesitate to leave a comment with any questions. Thank you for
looking.
I am a citizen of the US.
------
arjinium
Location: Mumbai, India
Remote: Yes, Strongly Preferred
Willing to relocate: No
Technologies: Python, Web Application Frameworks (Django, Flask, Tornado),
REST APIs (DRF), Postgresql, MySQL, HTML, CSS, Heroku, Vanilla JS, Frontend
Frameworks (VueJS), Linux, Docker.
Résumé / CV / Portfolio: Full CV and details of Open Source contributions
available on request
Email: [email protected]
I'm a Backend Python Developer with 5 years of experience building web app
backends and APIs. I've recently started dabbling in frontend frameworks, Vue
& React to be precise. Have been working on Open source applications for 4 out
of 5 years of work. I’m looking for a permanent or contract remote position as
a backend/fullstack developer.
------
dozomatt
Location: Los Angeles
Remote: Yes
Willing to relocate: Yes
Technologies: Python, JavaScript, Django, Pandas, Numpy, Scipy, Seaborn, Sci-
Kit Learn, TensorFlow, PyTorch, Keras, SQL, AWS, GCP, Linux, Ubuntu
Resume/CV:
[https://docs.google.com/document/d/1Dj2kHQZfG3UFOnDNW_XmO_Vi...](https://docs.google.com/document/d/1Dj2kHQZfG3UFOnDNW_XmO_VikylourNmPfXvD1gGOyE/edit?usp=sharing)
LinkedIn:
[https://www.linkedin.com/in/matthewcardozo](https://www.linkedin.com/in/matthewcardozo)
Email: [email protected]
------
denhox
Location: Prishtina, Kosovo
Remote: Yes
Willing to relocate: Yes, but would prefer remote
Technologies: JS (Node.js, Express.js), C# (.NET Core, Entity Framework Core),
React, Docker (& Swarm), RabbitMQ, Redis, WebRTC, CI/CD, Microservices,
ElasticSearch, DevOps (Azure mostly)
Résumé/CV: on request
Email: denathoxha [at] gmail
I'm a full stack developer and software architect. JS, C#, and React, are my
bread and butter. I'm autonomous, and willing to learn anything. I give a lot
of importance to PRs, mentoring, and documentation. I love automation, and am
very comfortable with DevOps tooling.
Personal: New Zealand citizen, currently living in Kosovo. Been unemployed for
two weeks because a company rescinded their offer due to the pandemic.
------
JJDeviloper
Location: San Francisco Bay Area, CA
Remote: Available
Willing to relocate: Yes, prefer USA, Canada, or Europe
Technologies: Python 3, Ruby on Rails, JavaScript, C#, Unity, whatever I'm using
Résumé/CV: http://bit.ly/JJ_Reibel
Email: [email protected]
Objective: Software Engineer position
Work Authorization: US Citizen, EU Citizen
Education: Bachelors, with some graduate study
Current Projects: Unity game in C#, Android game in Kotlin, iOS game in Swift, new programming language
LinkedIn: https://www.linkedin.com/in/jj-reibel/
------
pdimitar
Location: Sofia, Bulgaria.
Remote: Yes. Not interested in on-site. Okay with contract work and full-time.
Willing to relocate: In general no, unless there is a beach house involved!
:-)
Technologies: Elixir (strongly preferred). Have been through Assembly, C, C++,
Java, PHP, Ruby, JS, Golang. Total 18 years in the profession. Learning Rust
currently. Okay sysadmin, knows his way around in Windows, Linux and macOS
quite well but not suited for full-time Ops role.
Resume/CV:
[https://drive.google.com/file/d/1htgY1LWmizh5WJHM_R81DNzs11_...](https://drive.google.com/file/d/1htgY1LWmizh5WJHM_R81DNzs11_CdCqD/view?usp=sharing)
Email: [email protected]
LinkedIn:
[https://www.linkedin.com/in/dpanayotov/](https://www.linkedin.com/in/dpanayotov/)
GitHub: [https://github.com/dimitarvp](https://github.com/dimitarvp). (Started
working on an Elixir adapter for sqlite3, through Rust's rusqlite library.
Also working on an Elixir reader and post renderer of WordPress databases.)
DESCRIPTION:
With 18 years of experience I have worked with many technologies and I have a
few favourites as of today which I will insist on for full-time employment
(Elixir and Rust). Generalist and a problem solver by soul. I am not shy of
crossing boundaries and going deep into data analysis or system administration
when they are getting in the way of getting my task done.
I am okay with consulting and contract work for a time I am not picky on
technologies for those work venues. Recently worked on accelerating a
WordPress site is one example. Also helped a friend who is bootstrapping a
business to optimise a few slow Ruby on Rails SQL queries.
I love to take ownership of business problems. I work much better when I know
what actual problem out there does my work solve.
Hit me up even if it is just for a chat. I'd love to hear what you are doing
and are trying to solve!
------
fenelope
Location: San Francisco, CA
Remote: yes
Willing to relocate: yes
Technologies: Blender, Maya, Unity, UE4, Substance Painter, Photoshop, Krita,
node-based shaders
Portfolio/Resume: [https://penny-art.com/](https://penny-art.com/)
Email: find it in my resume
I'm Penny, a 3D Artist with 5 years in the tech industry, including experience
as a Software Engineer and a Technical Artist. My cross-disciplinary
background helps me establish asset pipelines and find solutions for any art-
engineering collaboration problems.
I'd like to focus on creating fantastical props and environments, but will
also continue being a generalist for interesting products that need a hand on
the creative team.
------
noles293
Ryan Nolan. Seeking entry level position. Open to contract.
Location: Boston, MA
Remote: Yes. I previously ran my own eCommerce business for 3+ years, while
managing a remote customer service team.
Willing to relocate: Potentially in the future. Depends on location.
Technologies: JS, React, HTML, CSS / SASS, Bootstrap, JQuery, Rails, Node.js,
Express.js, SQL, PostgreSQL, MongoDB. Currently learning Python + AWS
Resume:
[https://docs.google.com/document/d/1pmP26_uibBJkXkOqjQlP8OBY...](https://docs.google.com/document/d/1pmP26_uibBJkXkOqjQlP8OBYYFl2oGwa0ZSbOUFcejU/edit?usp=sharing)
Email: [email protected]
Thanks so much!
------
jorgemf
Location: Spain
Remote: YES
Willing to relocate: No right now
Technologies: Deep Learning, Machine Learning, TensorFlow, Data Science, Python, Java, Kotlin,
Résumé/CV: http://jorgemf.github.io/cv.pdf
Email: (see CV)
I am a Deep Learning Researcher & Engineer. I started my career in Artificial
Intelligence with my degree in Computer Science Engineering, which I graduated
with first-class honors in 2006. I continued my education with a Ph.D. in
Artificial Intelligence and an MBA. I have worked mostly with startups from
San Francisco, London and Madrid. Only on remote roles since 2015.
------
monkin
I believe that online design is a living organism, you can only analyse, and
adapt, so it's never truly finished. If you create something in Analytics,
AdTech, or any other NewExcitingTech drop me a note, maybe I can help. :)
Location: US
Remote: Yes
Willing to relocate: Yes
Technologies: Figma, Sketch, Adobe Photoshop, Adobe Illustrator, UX, UI, Game
Interfaces, HTML, CSS, Brain, Heart, and many more...
Résumé/CV/Portfolio: Send me an e-mail, and I'll reply with more details. :)
Email: [email protected]
Dribbble: [https://dribbble.com/monkin](https://dribbble.com/monkin)
Behance: [https://www.behance.net/monkin](https://www.behance.net/monkin)
------
ido
Location: Berlin, Germany (UTC+1)
Remote: Yes
Willing to relocate: No
Technologies: Unity, c#, mobile, html5, js, haxe
Résumé/CV:
[https://docs.google.com/document/d/1bMqRvk9DT1zbtxuiN6kvNba1...](https://docs.google.com/document/d/1bMqRvk9DT1zbtxuiN6kvNba1VMwOrIkl2pLh5gwMqaU/edit?usp=sharing)
Email: ido dot yehieli at gmail
I'm a freelance game developer with 10 years of experience in the games
industry. Although I’ve worked in a variety of roles (designer, developer,
producer, team lead) I’ve mostly worked as a developer - as an employee,
consultant as well as on my own indie games.
I've mostly worked in mobile casual/f2p and indie (all platforms).
------
p-funk
Location: Cincinnati, OH
Remote: Yes
Willing to relocate: Yes
Technologies:
-Embedded systems: C/C++, Arm core microcontrollers, Atmel, Cypress, STM32, etc.
-Web: HTML, CSS, Javascript, React
-Other: SQL, MongoDB, Catch2, Mocha, AWS, C#, some Rust, some Python
Résumé/CV:
pmusgrave.github.io/contact
github.com/pmusgrave
https://www.linkedin.com/in/paul-musgrave-74818842/
Email: [email protected]
Hi, I'm Paul, I'm a software engineer. My latest project is an IoT home
automation system and dashboard in React that ties together a lot of
microcontroller projects I built. I've previously designed high quality pro
audio equipment and developed software in the structural engineering industry.
------
resume384
Location: USA
Remote: Preferred
Willing to relocate: Open to the possibility.
Technologies: Modern JS, HTML5, CSS3, Web APIs, Node.js, Docker, Linux
Résumé/CV: shorturl.at/CDKLP
Email: [email protected]
Phone: 415-854-6590
I'm a self-taught web developer with 15+ years of experience who codes for the
love of coding and enjoys working through unique challenges. Experienced
building non-framework based, VanillaJS/WebAPI hand coded applications.
Comfortable in multi-hat environments. Open to unconventional arrangements,
let's talk... reach out via email, voice or text.
------
otobrglez
Location: Slovenia, Europe
Remote: Yes
Willing to relocate: No
Technologies: Ruby, Rails, Scala (I LOVE IT!), Akka, PostgreSQL, MongoDB,
Redis, Cassandra, JavaScript (Front-end and Back-end), TypeScript, Angular,
Docker, Python
Résumé/CV: [https://bit.ly/hn-job-april-20](https://bit.ly/hn-job-april-20)
Email: Follow the Resume/CV link
I'm currently working as a technology director; managing 20+ remote
contractors in 4 countries. I've been building things online for the last 17
years.
I love to solve problems with modern tooling and I love working with startups
where I can make a big difference.
I would like to work on projects that have a lot of data and is hopefully
moving fast. :)
------
Sorion
Location: Portland, OR
Remote: If Possible, If Not That's Fine
Willing to Relocate: No
Technologies: C, Python, Linux Server Administration, Emacs(yeah this counts),
Sage, Windows Server Administration, Excel VBA.
Resume:[https://tinyurl.com/qpxezkn](https://tinyurl.com/qpxezkn) ,
[https://www.linkedin.com/in/ben-dalbey-/](https://www.linkedin.com/in/ben-
dalbey-/)
Email: [email protected]
Longtime Network Administrator who transitioned into owning a successful home
building company for the last ten years. Looking to transition back to the
tech industry in the sales/growth side.
------
pknerd
Remote: Yes
Willing to relocate: No
Technologies:
\- Python for Command line scripts for scraping, automation, ETL, Data
Analysis and Flask/Django for Web.
\- Being a technology agonistic and curious person I love to explore different
technologies and languages. Recently exploring Go and Rust.
\- I also love writing and maintain a blog which also helped many times to get
job/gigs.
Profile: [http://adnansiddiqi.me](http://adnansiddiqi.me)
Blog: [http://blog.adnansiddiqi.me](http://blog.adnansiddiqi.me)
Github: [https://github.com/kadnan](https://github.com/kadnan)
Email: kadnan @ gmail
------
sumitjami
Location: Nürnberg, Germany
Remote: Yes
Willing to relocate: No
Technologies: Python, Ruby, Golang, Kafka, Prometheus, data pipelines, OpenStack, Kubernetes, Django. etc
Résumé/CV: http://bit.ly/2YtMmZX (google drive)
Email: in resume
[https://github.com/sum12/songbook](https://github.com/sum12/songbook) \-
dynamic video-clip-loops for guitar practice.
[https://review.openstack.org/#/q/owner:sumitjami](https://review.openstack.org/#/q/owner:sumitjami)
------
varunpsr
SEEKING WORK | PUNE, INDIA | REMOTE | Two person team, also available
individually Location: Pune, India 8+ years of experience developing,
publishing Web and Mobile Apps, Containerizing existing applications,
performing cloud migrations to a cloud provider of your choice from your
current on-premise deployment.
Location: Pune, India
Remote: Yes
Willing to relocate: No
Technologies: Python, Django, Celery, Scrapy, ReactJS, React Native, RabbitMQ,
Docker, RESTFful APIs, AWS, Azure, Postgres, GraphQL, AWS Amplify, AWS AppSync
Résumé/CV:
[https://stackoverflow.com/cv/varunpsr](https://stackoverflow.com/cv/varunpsr)
Email: [email protected]
------
phil-opp
Location: Karlsruhe, Germany
Remote: yes
Willing to relocate: no
Technologies: Rust, systems programming, operating systems, embedded, open-
source software
Resume: [https://www.linkedin.com/in/phil-
opp/](https://www.linkedin.com/in/phil-opp/)
Email: [email protected]
After finishing my computer science master in 2019 and focusing the last few
months on open-source software, I'm looking for a job now. I specialized on
operating systems, embedded, and systems programming. I'm writing a blog about
OS development in Rust at [https://os.phil-opp.com/](https://os.phil-
opp.com/).
------
john-j
Location: Katowice, Poland
Remote: Yes
Willing to relocate: No
Technologies: JavaScript, TypeScript, Node.js, PHP, React, Redux, Electron,
Symfony, Laravel, MySQL, PostgreSQL, C#, AWS, HTML, CSS and many others.
Résumé/CV: [https://www.linkedin.com/in/jan-
jablonski/](https://www.linkedin.com/in/jan-jablonski/)
Email: contact [at] jablonski.dev
Full stack, web applications developer with 9 years of commercial experience.
I specialise in web technologies, but have worked with desktop applications,
hardware programming, image/video processing and other domains.
Limited travel is fine once we're allowed to travel again.
------
whereitleads
Hi! I'm a full-stack software engineer, with some background in Machine Learning/Data Analysis.
Location: Toronto, Ontario, Canada
Remote: Yes
Willing to relocate: Yes
Technologies: Python3, React, AngularJS, JavaScript (ES5/ES6), jQuery, Java (Android), R, MATLAB, Scikit-learn, NumPy, HTML5, CSS3, Sketch
Résumé/CV: https://www.dropbox.com/s/jgtw186xrsnxl0x/Yeung_Winnie_v2.pdf?dl=0
Website: https://winnie9197.github.io/my-portfolio/
Github: https://github.com/winnie9197
Email: [email protected]
------
torgian
Location: Taipei, Taiwan
Remote: Yes
Willing to relocate: Depends on area
Technologies: Python, Javascript, Vue, Django
Email: [email protected]
CV: [https://torgian.github.io/resume/](https://torgian.github.io/resume/)
I'm a self-taught remote developer currently living in Taiwan. I'm looking for
part-time contract work, possibly full time depending on your needs.
I've been working with a German company for the past two years developing a
variety of applications. Most of my time is spent writing front-end code,
though I've also developed back-end APIs and have spent lots of time debugging
the past several months.
------
taimoorsattar7
Hi. My name is Taimoor Sattar. I am an independent developer and designer. I
build a better website using Javascript, CSS, NodeJS, and PHP. I design APIs
and ensure that they can be accessed by everyone, everywhere.
Location: Saudia, Riyadh
Remote: Yes
Willing to relocate: Yes
Technologies: APIs, Javascript, Node, WordPress, CSS, PHOTOSHOP
Résumé/CV:
[https://taimoorsattar.dev/resume.pdf](https://taimoorsattar.dev/resume.pdf)
Website: [https://taimoorsattar.dev](https://taimoorsattar.dev)
Project: [https://www.underlinejobs.com](https://www.underlinejobs.com)
Email: [email protected]
------
uurtamo
Location: SF Bay Area
Remote: No problem
Willing to relocate: Yes
Technologies: C, Perl, Golang, {Java and Python is workmanlike but okay},
fault-tolerant systems (error-correcting codes, network and systems design and
the like)
Resume: [https://tinyurl.com/wmfoqkj](https://tinyurl.com/wmfoqkj)
Email: uurtamo [at] gmail.com
I started in systems and networking backend (wire and code monkey), got a math
BS and theory PhD in CS and mostly do data-driven stuff now, stats,
probability, modeling, etc., but am open. If you want to do anything with
ECC's, Golang, or weather data that'd also work, since it's how I'm filling my
free time.
------
jameshe
Location: Chicago, IL
Remote: Sure thing!
Willing to relocate: Yes
Technologies: JavaScript (Node.js, React Native), Python (Flask, Django), C#
(.NET Core, WPF, and APIs), SQL (SQLite, Postgres, SQLAlchemy), AWS, Shell
Script, Git, Figma, PM software (Jira, Trello)
Résumé/CV: Can send via email!
Email: [email protected]
\---
In my last year of university, current experience includes development of web
applications & leading a React Native dev team for a local startup (current),
as well as producing blogs (generally Flask but recently React) and Shopify
sites for student organizations. Self-taught, but looking for opportunities
where I can help make something awesome in a group of folks that I can learn
from as well. :)
------
madduci
Location: Berlin, Germany
Remote: Yes
Willing to relocate: No
Technologies: C++/Java/PHP, build systems (Conan, cmake, maven, composer),
packaging (DMG, MSI, Deb, Rpm, jlink, jpackage), docker, Vagrant/Packer,
Jenkins and more
Resume/CV: [https://madduci.netlify.com](https://madduci.netlify.com) (link to
Stackoverflow, LinkedIn, git)
Email: adduci / tutanota.com
I am a Computer Engineer with a focus on the full software lifecycle, from
design to deployment. I'd like to work on embedded platforms and I'm open to
move to new tech stacks like Go or Rust as well, but also as Engineering
Manager, mentoring and nurturing people.
------
heyshtor
Location: London
Remote: Yes
Willing to relocate: No
Technologies: NLU, NLP, Python, text-to-speech, speech recognition, QA (web
technologies, voice), HTML/CSS, documentation.
Résumé/CV: [https://www.linkedin.com/in/mariya-
heyshtor-164a35157/](https://www.linkedin.com/in/mariya-heyshtor-164a35157/)
Email: please see LinkedIn Contact info
I am a computational linguist who worked on Google Assistant (NLG, NLU) and
Samsung Bixby (ASR, NLU, TTS, QA, analytics). I also have experience
supporting a web-service remotely as well as creating and maintaining both
external and internal documentation.
------
manud
Location: Auckland, New Zealand -> London, UK
Remote: Yes
Willing to relocate: Yes
Technologies: Go, Bash, Git, CI/CD (Jenkins), Cloud (AWS, GCP), Elasticsearch,
Kubernetes/Helm
Résumé/CV: [https://manudawber.me/](https://manudawber.me/)
Email: [email protected]
Was planning to move to London on April 1st but that is postponed for now,
still intend to move once things settle (T5 visa already approved). I'm a tech
generalist with a focus on cloud technologies and DevOps; I've spent the last
few years developing and automating cloud-native solutions for a number of New
Zealands largest companies.
Open to contract and full-time work.
------
bizzleDawg
Location: Bristol, UK
Remote: Yes (or onsite in Bristol)
Willing to relocate: No
Technologies: Python (Django + Flask), Javascript (React/-native), Heroku, AWS, Linux, Bash
Résumé/CV: https://www.linkedin.com/in/benjaminhowes/ // https://ben-howes.co.uk
Email: [email protected]
Hi! I'm a former startup founder and currently a freelance engineer. Looking
for perm opportunities where I can use both my technical skills and skills
I've learned as a founder and consultant. Over 7 years experience.
------
claudio-viola
\- Location: REMOTE (London, UK / EUROPE)
\- Remote: YES (only please)
\- Willing to relocate: depends, EU
\- Technologies: Javascript, Typescript, Node.js, Docker, jenkins, cloud,
devops, backend, agile, scrum, python, ruby, shell scripting, linux, chef,
ansible, ci/cd,
\- Résumé/CV: [http://bit.ly/2HucTwp](http://bit.ly/2HucTwp)
[https://www.linkedin.com/in/claudio-
viola/](https://www.linkedin.com/in/claudio-viola/)
\- Email: [http://scr.im/3zi3](http://scr.im/3zi3)
------
tradziej
Location: Poland, Europe Remote: Yes, preferred (4+ years of experience
working remotely)
Willing to relocate: Location and project dependent
Technologies: Ruby, Ruby on Rails, Javascript
Résumé/CV:
[https://github.com/tradziej/resume/blob/master/tomasz_radzie...](https://github.com/tradziej/resume/blob/master/tomasz_radziejewski.pdf)
GitHub: [https://github.com/tradziej](https://github.com/tradziej)
Email: See resume
Software Engineer (with 7+ years of experience) looking for a long term job.
Can do backend or full stack.
------
ahmad_muzakkir
I'm a passionate software engineer interested in back-end systems. I used to
work on Android, now working with Go. I've worked on a number of open source
projects in Go. Location: Malaysia
Remote: Yes
Willing to relocate: Yes
Technologies: Go, RESTful APIs, gRPC, SQL, NoSQL, Docker, Git, ElasticSearch
Résumé/CV: [https://www.linkedin.com/in/ahmad-
muzakkir-90b31646/](https://www.linkedin.com/in/ahmad-muzakkir-90b31646/)
GitHub: [https://github.com/AhmadMuzakkir](https://github.com/AhmadMuzakkir)
Email: ah.muzakkir [at] gmail.com
------
minkzilla
Location: St Louis, MO, USA
Remote: No
Willing to relocate: Yes
Technologies: C, C++, OpenMP, MPI, Perl, Python, sklearn, Pytorch, Java,
JavaScript, React, SQL
Email: [email protected]
Resume:
[https://github.com/GilmoreJoseph/Resume/blob/master/Resume.p...](https://github.com/GilmoreJoseph/Resume/blob/master/Resume.pdf)
I am graduating from Saint Louis University in May with Bachelor of Science
Computer Science and a Minor in Mathematics. I am looking for full time
employment as a Software Engineer. I am interested in Machine Learning,
embedded software, and High Performance computing.
~~~
mattcdrake
Heads up, your resume link appears to be broken.
~~~
minkzilla
Fixed. Thank you for letting me know.
------
adamjo
Location: Seattle, WA, USA
Remote: Yes
Willing to relocate: Yes
Occupation: Full Stack / Front End Developer / Front End Engineer / Software
Engineer
Technologies: React, Javascript, Node, DevOps, Linux, Angular2+, Google
Clouds, AWS, Jest, Mocha, and Firebase
Resume/CV: [https://www.linkedin.com/in/adam-
johannesmeyer-5b379a93/](https://www.linkedin.com/in/adam-
johannesmeyer-5b379a93/) (resume on request)
Email: [email protected]
Github: [https://github.com/adamjo](https://github.com/adamjo)
6 years experience, originally from Nebraska, computer science degree
------
ryan_wunjo
Location: Maine, USA
Remote: YES
Willing to relocate: NO
Technologies: VueJs, React, Typescript, Javascript, .Net, C#, SQL
Résumé/CV:
[https://docs.google.com/document/d/1xaB_2F_CtyOttMwdaHM62nOD...](https://docs.google.com/document/d/1xaB_2F_CtyOttMwdaHM62nOD1g95YFcerLY6eTyBY8E/edit?usp=sharing)
Email: [email protected]
Front-end leaning full stack developer with 11 years of experience and 6 years
of successful remote work. Quick learner. Love building great looking, user
focused interfaces with high usability. Also willing to take on lead and
project management roles. Available for contract or FTE.
------
flashno
Location: San Francisco Remote: Yes Willing to relocate: Maybe Technologies:
Unity/C#, C++, C, Swift, java Résumé/CV: Available on request
Email:[email protected] Hey HN. I've graduated with a CS degree in 2016, and
immediately got into the world of AR/MR. I was making some tango and hololens
apps for a big industrial company, and recently worked at a 16 person computer
vision startup out of the university of oxford that got acquired yesterday.
Made all the sample apps, and did some deeper SDK integration in that last
role. Looking for anything interesting!
------
cobih
Product Manager with 9+ years experience in Technology MNC. Proven ability to
analyze markets, work in remote and cross-functional teams across multiple
continents. Experienced leader in overall management of the product life cycle
from concept to delivery.
Location: Dublin, Ireland
Remote: Yes, experienced
Willing to relocate: Yes
Technologies: PHP, Javascript, Hack, Python, JIRA, SQL
Skills: Wireframing, prototyping, roadmapping, strategy, gtm, user research,
customer development, market analysis, competitive analysis
Résumé/CV:
[https://www.linkedin.com/in/cobih](https://www.linkedin.com/in/cobih)
Email: [email protected]
------
adam_albrecht
Location: Columbus, Ohio
Remote: Yes
Willing to Relocate: Not currently, but possibly next year.
Technologies: Ruby-on-Rails, React/Redux, HTML/CSS/HAML/SASS, Elixir / Phoenix
Resume/CV:
[https://www.adamalbrecht.com/resume](https://www.adamalbrecht.com/resume)
Email: adam.albrecht [at] gmail
• 10+ years of experience building complex business applications in Ruby-on-
Rails, Javascript, React, HAML, SASS, Rspec, etc.
• I also have experience in Elixir and Phoenix
• I've helped start 2 successful SAAS businesses, one in healthcare and the
other in legal tech. One was recently acquired while the other is a thriving
business.
------
karinaschaefer
Location: Brazil
Remote: Only
Willing to relocate: Not at this time
Résumé/CV: [https://www.linkedin.com/in/karina-
schaefer/](https://www.linkedin.com/in/karina-schaefer/)
Email: [email protected]
Hello, I'm Karina Schaefer. I'm a journalist currently working at a Polish
technology company as Customer Success leader of the Brazilian team for the
last 10 months. Well, I was. The company had to shut the Brazilian operation
due to the economic impact of COVID-19.
I'm looking for opportunities in Customer Success, Content Marketing or
Community management with an educational bias.
------
husseinzaki
Location: Cairo , Egypt Remote: Yes
Willing to relocate : Yes
Technologies : HTML , HTML5,CSS, CSS3, Javascript, React , Responsive design ,
Git, Bootstrap , Materiallize.css
Git: [https://github.com/Hussein90](https://github.com/Hussein90)
Linkedin:
[https://linkedin.com/in/husseinzaki](https://linkedin.com/in/husseinzaki)
Resume/CV:
[https://drive.google.com/open?id=0BwsejUyj6fPSaW4zSURGVGFydl...](https://drive.google.com/open?id=0BwsejUyj6fPSaW4zSURGVGFydl...).
Email: [email protected]
------
alex996
Location: Montreal, QC
Remote: Yes
Willing to relocate: Yes
Technologies: JavaScript/ES6+, TypeScript, Node.js, Express, GraphQL,
PostgreSQL, MySQL, MongoDB, Firebase, RabbitMQ, Docker, Kubernetes, React,
Vue.js, Webpack, Babel
Resume: [https://github.com/alex996](https://github.com/alex996) (CV shared
upon request)
Email: [email protected]
YouTube channel:
[https://youtube.com/c/CodeRealm](https://youtube.com/c/CodeRealm)
Full-stack developer with 4 years of experience. Currently looking a remote
position preferably at a startup. Open to both full-time and contract.
------
rizkidoank
Location: Indonesia
Remote: Yes
Willing to relocate: Yes
Technologies: Python, Cloud Platform(AWS, GCP), Containers (Docker,
Kubernetes), IaC (Terraform)
Résumé/CV:
[https://drive.google.com/file/d/1df74NkK6ppHn4kTNxzF79Jc23nT...](https://drive.google.com/file/d/1df74NkK6ppHn4kTNxzF79Jc23nTIqAIX/view?usp=sharing)
LinkedIn:
[https://www.linkedin.com/in/rizkidoank/](https://www.linkedin.com/in/rizkidoank/)
Email: [email protected]
------
aryzach
Github: [https://github.com/aryzach](https://github.com/aryzach)
How I've learned everything:
[https://aryzach.github.io/ClassAndBookReviews.html](https://aryzach.github.io/ClassAndBookReviews.html)
Location: Austin, TX
Remote: Willing to work remote or in office
Willing to relocate: Yes
Technologies: Python, Haskell, Git, Linux, Racket (Lisp dialect), Ruby, Agda
(theorem prover), Rails, C
Résumé/CV:
[https://aryzach.github.io/Resume.pdf](https://aryzach.github.io/Resume.pdf)
Email: [email protected]
------
phomer
Location: Toronto
Remote: Yes, preferred right now.
Willing to relocate: Maybe, later, at some point.
Technologies: Go, Java, C, C#, Unix, Windows, etc.
Résumé/CV:
[https://www.linkedin.com/in/paulhomer/](https://www.linkedin.com/in/paulhomer/)
Email: paul_homer at yahoo.ca
I've got 30+ years of programming/design/managing experience. I prefer
algorithmic coding for backends but I have worked in a wide range of different
positions, systems, and domains.
Blog:
[http://theprogrammersparadox.blogspot.com/](http://theprogrammersparadox.blogspot.com/)
------
jzast2
Location: San Francisco, CA
Remote: Okay
Willing to relocate: No
Technologies: Python, SQL, PyTorch, Keras, Sklearn, Pandas, Jupyter,
Matplotlib, Seaborn, Plotly, Docker, Kubernetes, Airflow, Git, Linux, AWS,
Postgres, SQLServer, Snowflake
Resume:
[https://drive.google.com/open?id=1rplUbMrFhcA0rG5hp6y-vvGzI3...](https://drive.google.com/open?id=1rplUbMrFhcA0rG5hp6y-vvGzI3AMc4jL)
Email: [email protected]
LinkedIn: www.linkedin.com/in/josh-zastrow
github: [https://github.com/JoshZastrow](https://github.com/JoshZastrow)
Open to Data Science / Machine Learning Engineer opportunities
------
eby
Developer mostly working in biotech, pharma, academic research. Open to FT but
contract is an option.
Location: Tokyo Japan
Remote: Yes, or onsite for the right opportunity
Willing to relocate: Yes, for the right opportunity [US only]
Technologies: What do you need? Most of my heavy work is on a Java stack, but
I've written major components in R, Python, Perl, whatever it takes. I do lots
of data wrangling in R, bash, etc.
Résumé/CV: [https://www.linkedin.com/in/david-
eby-620794](https://www.linkedin.com/in/david-eby-620794)
Email: contact me through LinkedIn or restlessmech [at] gmail [dot] com
------
evangelosdotnl
Location: Amsterdam, NL
Remote: Yes
Willing to relocate: No
Technologies: Java, Spring Boot, Python, HTML, CSS, JavaScript, Web
Components, Angular, Jenkins, Docker, MongoDB, MySQL, Elastic Search,
Logstash, Kibana, Redis, Apache Kafka, Linux, Apache Tomcat
Resume/CV: available upon request
Email: info[at]evangelos.nl
Dev Engineer with 10+ years of professional experience. I provide services in
User Experience, Design, and Full-Stack Engineering to bring your new complex
business challenges into being.
Extensive experience on lifting your most sophisticated software concepts to
life, with industry-leading full-cycle custom application development.
Let's have a talk! Ping me at info[at]evangelos.nl
------
kenwarner
Looking for senior full-stack engineer or engineering/product leadership roles
(Engineering Manager, Director/VP of Engineering)
Happy to be hands-on for smaller teams or with larger teams to focus more on
product strategy, technology architecture and vision, team operational
excellence, organizational alignment, etc
Location: Raleigh, NC
Remote: Yes
Willing to relocate: No
Technologies: Node.js, Python, .NET, Angular, React, AWS, Azure, DevOps, Architecture, Data engineering, ML
Résumé/CV: https://www.linkedin.com/in/kjwarner/
------
julianwachholz
Location: Zürich, Switzerland
Remote: Possible
Willing to relocate: No
Technologies: Python, Django, JavaScript, React, Go, Elixir/Erlang
Résumé/CV: https://ju.io/ (more detailed version upon request)
Email: [email protected]
Languages: German, English
Around 8 years of experience building all kinds of web solutions for small and
large clients. I thrive in smaller teams and aim to push good practices like
test driven development and documentation. Building smaller projects in my
free time using new tech is my thing.
------
jvlier
Freelance Data Scientist / Machine Learning Engineer. Just wrapped up a 2.5
year project to detect events on the aircraft apron using cameras (Deep
Learning).
Location: The Netherlands
Remote: Yes
Willing to relocate: maybe (would consider CA,
Zürich, New Zealand)
Technologies: Python, Machine Learning, Deep Learning,
Computer Vision, Spark, Airflow, MLflow, Kafka,
SQL, MongoDB, Linux, AWS, GCP, statistics.
Résumé/CV: https://jvlanalytics.nl/assets/resume.pdf
Email: [info] at [jvlanalytics dot nl]
------
thaedev
Location: Moscow, Russia
Remote: yes
Willing to relocate: maybe
Technologies: Python, Django, Tornado, Flask, Celery, RabbitMQ, SQLAlchemy, Pandas, Scikit, Oracle PL/SQL, TSQL, PostgreSQL, MongoDB, Golang, Jenkins, TeamCity, Docker, RESTful APIs
Résumé/CV: https://drive.google.com/file/d/1JfKv61uxcjFhxOsepvgAuovcVuUq_g7C/view?usp=sharing
LinkedIn: https://ru.linkedin.com/in/alina-krasavina-6308586
Github: https://github.com/thaelathy
Email: [email protected]
------
CagingRoyals
Location: Atlanta, GA, USA
Remote: Yes
Willing to relocate: Yes
Technologies: Go, Python, Django, Bash, Linux, Docker, Git
Résumé/CV:
[https://samhofi.us/4c9e77e5a32d8777/SamuelHofiusResume.pdf](https://samhofi.us/4c9e77e5a32d8777/SamuelHofiusResume.pdf)
Email: sam [at] samhofi [dot] us
Github: [https://github.com/kf5grd/](https://github.com/kf5grd/)
I love learning new things, and sharing what I know with others. I'm looking
for something that can challenge me to continue learning, as well as improve
upon things I'm already familiar with.
------
kumard
Location: San Francisco Bay Area
Remote: Yes
Willing to relocate: Yes
Technologies: Python, PHP/Laravel, JavaScript, Swift / iOS, AWS. Wordpress /
Woocommerce, Mysql/ DynamoDB / Firebase, PyTorch
I got a PhD in engineering (informatics related) in the bay area, but then
moved on to web and app development, and ran two successful startups that used
ML/Data Science/Web technologies at scale. I have 7+ years of experience
building web apps, scaling backends on AWS/GCP, data science, and machine
learning. Interested in both startups and larger companies. Resume available
on request.
Email: [email protected]
------
CiscoCodex
Location: Los Angeles, CA
Remote: Yes
Willing to relocate: Open
Technologies: C# | Java | NodeJS | JavaScript | HTML | CSS | Python
GitHub: [https://github.com/CiscoCodex](https://github.com/CiscoCodex)
LinkedIn: [https://www.linkedin.com/in/francisco-
rodriguez-174ba8172/](https://www.linkedin.com/in/francisco-
rodriguez-174ba8172/)
Email: [email protected]
I'm looking for Jr/Mid level positions in either desktop or web development.
Ever since I started exploring Electron I found I like the fluidity of moving
between these two environments.
------
jsgv
Location: San Diego, CA, USA & Stockholm, Sweden
Remote: Yes
Willing to relocate: Yes
Technologies: PHP, Node.js, Javascript, TypeScript, Go
Resume: [https://pseudo.cc/resume.pdf](https://pseudo.cc/resume.pdf)
Email: j (at) pseudo (dot) cc
------
sudopluto
Hi all, I'm a 3rd year CS major at Northeastern University. I'm looking for a
software development internship / co-op for summer, fall, or both. I have had
1 previous internship, where I did embedded C++ for a medical device.
Location: Boston, MA
Remote: not prefered, but yes
Willing to relocate: yes
Technologies: C, C++, Java (a bit rusty), just starting ruby + rails
Résumé/CV:
[https://drive.google.com/file/d/1p9l_Anu5wpZokxVsMBVL_EZX_jT...](https://drive.google.com/file/d/1p9l_Anu5wpZokxVsMBVL_EZX_jThaIwL/view?usp=sharing)
Email: [email protected]
------
ericdoyle
Location: New York City Remote: yes Willing to relocate: yes, for the right
opportunity. Technologies: blockchain, crypto, fintech, adtech, eCommerce,
gaming, AI, telecom. I've been in tech marketing and PR for 20 yrs. Resume/CV:
[https://drive.google.com/file/d/1JkBfAoRdn6sjvwK9XkgMbCxFJXX...](https://drive.google.com/file/d/1JkBfAoRdn6sjvwK9XkgMbCxFJXXfRkVu/view?usp=sharing)
Email: [email protected]
------
willcipriano
Hi. I'm Will Cipriano and I have been working in healthcare IT for 5+ years
and in healthcare software development for the last 3.
Location: Philadelphia, PA
Remote: Yes
Willing to relocate: Possible
Technologies: I mainly work with Python and vanilla JS, I also have deployed
Java and Jquery/Bootstrap apps into production. Knowledgeable about REST
api's, sql databases and no sql.
Résumé/CV:
[https://drive.google.com/file/d/1Y0r5j3yu5TUkLWMIeCr_rBef9uO...](https://drive.google.com/file/d/1Y0r5j3yu5TUkLWMIeCr_rBef9uOI6Xwp/view?usp=drivesdk)
Email: See resume
------
sampadasathe
Location : United States Remote : No Willing to relocate : yes Technologies :
Python, R, SQL, JAVA, Kubernetes, Basic GCP, AWS, GIT, JavaScript, Angular JS,
Supervised/Unsupervised learning Resume :
[https://www.linkedin.com/in/sampada-sathe/detail/overlay-
vie...](https://www.linkedin.com/in/sampada-sathe/detail/overlay-
view/urn:li:fsd_profileTreasuryMedia:\(ACoAAB3z2r4BDJ94tQmbfZ_YCqZwBt0jtHhDPf4,1580789086818\)/)
Email : [email protected]
------
KhoomeiK
Location: San Francisco Bay Area/San Jose/Santa Cruz
Remote: Open to it
Willing to relocate: Open to it
Technologies: Flask, Express, React, React Native, PostgreSQL, SQLite, Keras,
PyTorch, Python, JavaScript
Résumé/CV: [https://tinyurl.com/rohan-resume](https://tinyurl.com/rohan-
resume)
Email: rohan [dot] pandey [at] gmail [dot] com
Website: [https://rpandey.tech](https://rpandey.tech)
I'm an undergrad student with experience in fullstack, mobile, data, machine
learning, and hardware technologies. Open to internships and some full-time
positions.
------
spaceandshit
Aerospace engineer, focus in controls and system design. Looking for new
opportunities.
Location: Seattle, WA
Remote: No
Willing to relocate: Yes
Technologies: Aerospace Controls, model-based development, requirements development, systems engineering, software engineering. C++, Python, MATLAB/Simulink.
Résumé/CV: Please see LinkedIn
Email: Please see LinkedIn
[https://www.linkedin.com/in/sujitshivaprasad/](https://www.linkedin.com/in/sujitshivaprasad/)
------
shalzz
Hello! I'm Shaleen, I'm a Backend developer/Systems Engineer with 4+ years of
experience and love to work on challenging and innovative projects.
I have a background in Blockchain systems and Android apps as well as desktop
applications.
Location: Gurgaon, Haryana, India
Remote: Yes, experienced
Willing to relocate: Yes
Technologies: Java, Javascript, Node.js, Rust
Resume: https://jain.sh/static/Resume.pdf
Website: https://shaleenjain.com/
Email: [email protected] || [email protected]
------
tumblen
Location: Austin, TX
Remote: Yes (preferred), Contract work preferred for now (but open-minded to
FT)
Willing to relocate: Unlikely but open-minded
Technologies: Full-stack development, Typescript, Javascript, React, Svelte,
HTML/CSS, MySQL, Postgres, NodeJS, Ruby, Java, Electron, Rubymotion, Android,
iOS, PHP, WordPress, Nginx, Redis, Design with Figma/Sketch/XD/PS
Résumé/CV: [https://www.dropbox.com/s/ya0y40ygjwpnxhd/nicky-
resume.pdf?d...](https://www.dropbox.com/s/ya0y40ygjwpnxhd/nicky-
resume.pdf?d...).
Email: [email protected]
------
giandvd
- Location: Uppsala, Sweden
- Remote: Yes, exclusively.
- Willing to relocate: Yes.
- Technologies: AWS, Terraform, NodeJS, PHP, React, HTML5, JS, Python, Java, C++, Qt, Perl, Jenkins, Zabbix, networking. Familiar with Kubernetes, Google Cloud.
- Résumé/CV: https://mutex.es/resume.pdf
- Email: [email protected]
Best at DevOps, great at coding, was technical cofounder of a startup so I'm
happy wearing any and all hats: software engineer, systems administrator, QA,
and customer support.
------
cameron_b
Location - Charlotte NC area
Remote - Yes
Relocate - Not right now :)
Tech - Running Zoom in a $multibillion tech company, massive platform
changeover experience, Voracious Systems Engineer, love Linux and solving real
world problems
NEED Zoom Help?
[https://github.com/cameronbunce/resume/blob/master/Cameron%2...](https://github.com/cameronbunce/resume/blob/master/Cameron%20Bunce.pdf)
[https://www.linkedin.com/in/cameronfbunce/](https://www.linkedin.com/in/cameronfbunce/)
cameronfbunce at gmail
------
novask
Location: Just about anywhere (currently in Huntsville, AL)
Remote: Yes
Willing to relocate: Yes
Technologies: C#/.NET, ASP.NET Core 2+, no frontend preference between
Angular/Vue/React, Azure, Azure DevOps, basic pentesting tools + worked with
C/Python/Java exploits and payloads during OSCP
Résumé/CV: [https://www.linkedin.com/in/jason-
witte-0123456/](https://www.linkedin.com/in/jason-witte-0123456/)
Email: [email protected]
* I don't mind Dev or Pentesting inquiries, but would prefer entry-level or intermediate positions only
------
earlyriser
\----------------------------------------------------- * Location: Alma,
Quebec CA
* Remote: Yes
* Willing to relocate: No
* Technologies: Front end engineer with full stack experience. Javascript, React, Angular, Vue, Knockout, AWS, Node, Python, PHP.
* CV: [http://robertomartinez.info/CV_roberto_martinez.pdf](http://robertomartinez.info/CV_roberto_martinez.pdf)
\- - - - - - - - - - - - - - - - - - -
Web developer 10+ years of experience in agencies, startups and consultancy. I
have been working remotely with distributed teams for 8 years.
* Email: romama [at] gmail.com
\------------------------------------------------------
------
stets
Location: Cincinnati, Ohio
Remote: Currently remote, would like to remain remote.
Willing to relocate: No
Technologies: Linux, Docker, Full-stack tech, API dev, VueJS, Python, Flask,
Django, Laravel, Networking, AWS, Linux, CI/CD, Currently learning Rust and
Golang, Web Scraping w/ Puppeteer, Requests, Beautiful Soup, Terraform
Résumé/CV: [https://www.linkedin.com/in/stetson-
blake-31635252/](https://www.linkedin.com/in/stetson-blake-31635252/)
Email: [email protected]
~~~
xmchlx1
1 point by xmchlx1 24 days ago [-]
Interested in opportunities for Data Scientist, Data Analyst, Backend Software
Development Engineer. 2 YOE. Open to contract, full-time, remote, internship.
Location: San Jose, CA, USA [Work Authorization: US Citizen]
Remote: Yes
Willing to relocate: Yes
Technologies: Python (Data Science Libraries: NumPy, Scikit, Matplotlib, PyTorch, Seaborn, etc.), Java, SQL (MySQL, PostgreSQL), Docker, R
Résumé/CV:
[https://docs.google.com/document/d/1OiWg65zeOlJMnSHAJtUV7PWB...](https://docs.google.com/document/d/1OiWg65zeOlJMnSHAJtUV7PWBAgailVQ7udFCb03bQn4/edit?usp=sharing)
Email: [email protected]
I do NOT need work visa sponsorship to work in the USA.
------
hscells
Location: Australia
Remote: No
Willing to relocate: Yes; Looking to move to Europe
Technologies: Go, Java, Python (pandas, matplotlib, sklearn, etc.), R, BASH,
SQL, Elasticsearch, Lucene
Résumé/CV:
[https://scells.me/files/academic_cv.pdf](https://scells.me/files/academic_cv.pdf)
Email: [email protected]
GitHub: [https://github.com/hscells](https://github.com/hscells)
Looking for applied scientist positions/post-doc positions in Information
Retrieval/Data Science/Machine Learning. Finishing PhD within the next 6
months.
------
ryanlanci
React / JavaScript focused freelancer | Many high-profile projects
· Location: Ann Arbor, MI
· Remote: Yes
· Willing to relocate: No
· Technologies: React, React Native, Node, Rails (others)
· Résumé/CV:
[https://linkedin.com/in/lanciaux](https://linkedin.com/in/lanciaux)
· Thread with more info:
[https://twitter.com/ryanlanciaux/status/1244636442401308675](https://twitter.com/ryanlanciaux/status/1244636442401308675)
· Email: ryan [at] spaceship.studio
(Contract/freelance projects only, please - full-time freelancer )
------
silaskro
Location: San Francisco Bay Area Remote: Yes
Willing to relocate: No
Technologies: Tableau, SQL, Stata, Advanced Excel
LinkedIn: [https://www.linkedin.com/in/garima-g-
anand/](https://www.linkedin.com/in/garima-g-anand/)
Email: silaskro AT gmail
I am a business analyst looking for an internship or a full-time role. I have
a Masters in Economics, with prior experience in Content Marketing but have
self-learned data visualization using Tableau.
I'm passionate, flexible and looking to get a foot in the door at a startup
that will help me learn and grow.
------
blizkreeg
Location: SF/Oakland
Remote: Yes
Willing to relocate: No
Skills: Product Management, Engineering Leadership
Résumé/CV:
[https://www.dropbox.com/s/8avluthbjh55cg0/resume%20-%202020....](https://www.dropbox.com/s/8avluthbjh55cg0/resume%20-%202020.pdf?dl=0)
Email: in resume
I'm a product and engineering leader looking for part-time, interim, or
consulting roles. Over the years, I've built and led teams that has shipped
delightful products to customers. I primarily work in B2B/SaaS and preferably
early to mid stage startups and companies.
------
Nirgal
Location: Lyon, France
Remote: yes
Willing to relocate: eventually
Technologies: java, javascript, spring boot, vuejs, MySQL, also did some PHP,
C#
Résumé/CV: [https://www.linkedin.com/in/nicolas-
hel/](https://www.linkedin.com/in/nicolas-hel/)
Email: znirgal at gmail dot com
I've been developping and mocking websites, mostly as a hobby, for 12 years.
Four years ago started learning how to code professionally, both with courses
and self-learning.
I'm autonomous and a fast-learner and am looking for a meaningful project
which has a positive impact on the world.
------
mariepaoli
Location: San Francisco Bay Area
Remote: Either
Willing to relocate: No
Technologies: I'm non-technical, but specialize in go-to-market strategy
(messaging, positioning, channel strategy, engagement marketing), program
design/mgmt, and community building. I do play well with technical team
members, and have extensive experience with Mode, Tableau, SQL, JIRA, and
others.
Resume:
[https://drive.google.com/open?id=1ld89RpBgFul5snr3zgYMlrZQd-...](https://drive.google.com/open?id=1ld89RpBgFul5snr3zgYMlrZQd-
ajBtiea7I01veSEkY)
Email: [email protected]
------
vmlinuz
Location: Hong Hong (UK citizen, HK Permanent Resident, English-speaking)
Remote: Yes
Willing to relocate: No
Technologies: Primary: Linux/Unix, Python, Django, PHP. Secondary: SQL, git,
AWS, JavaScript, Android, shell, HTML, C. Tertiary: Go, Kotlin, Docker
CV: [https://bit.ly/3blS31m](https://bit.ly/3blS31m)
Email: [email protected]
I am an experienced engineer, mostly working on web/API backend in PHP and
Python recently - but I've also done Unix kernel and OS work, and written a
few Android apps. I'm available immediately, and good at making stuff work!
------
alexkappa
Role: Engineering Manager, Tech Lead
Location: Amsterdam, The Netherlands
Remote: Yes
Willing to relocate: No
Technologies: Go, JavaScript, Java
Résumé/CV: Available on Request
Email: alex.kalyvitis at gmail.com
—
Hi HN! I’ve spent the majority of my time in adtech (sorry!) and briefly in
airline revenue management in leadership roles for the past 3-4 years.
I’ve gone through the growing pains of hiring and retaining talented people,
helped on the strategic side of things as well as pitched to customers,
investors and m&a teams.
------
textread
Location: Bangalore, Remote
Remote: Yes (preferred)
Willing to relocate: Prefer not to
Technologies: Django, React, Machine Learning
Résumé/CV: https://drive.google.com/open?id=1mzQHjxMlAi_LOrQwccnQUskjzjr1RU6I
Email: anoopemacs AT google mail
I work at an oil trading startup and times have been tough now. Would like to
start out as an individual freelance contributor and prove myself.
However, I do have prior experience setting up remote teams for overseas
startups if thats what you are looking for.
------
chad_strategic
Location: Denver Remote: Yes Willing to relocate: NO
Technologies: Trading API, (TDameritrade, Interactive Brokers) Stocks,
Options, Futures, Trading, Python, Mysql, Finance
Résumé/CV: [http://www.strategic-
options.com/chads_resume.html](http://www.strategic-
options.com/chads_resume.html)
Email: [email protected]
Algorithms / Strategies
-Volatility Algorithm, deploy across $150 million portfolio
-Options Implied Volatility Arbitrage strategies
-Stock & Equity Algorithms, Current tracking over 500 stocks.
-Futures / day trading algorithms
Software & API:
-TD Ameritrade, Interactive Brokers, Etrade, Ally
-Scraping techniques
------
lyxsus
Location: Saint-Petersburg, Russia Remote: Yes Willing to relocate: Yes
Technologies: Javascript/TypeScript, React (Relay/Redux/Apollo),
Postgresql/Mysql/NoSQLs, K8S, Python Résumé/CV:
[https://drive.google.com/file/d/1prIEGxr8Z3_Eg851FfEyWBWjmE3...](https://drive.google.com/file/d/1prIEGxr8Z3_Eg851FfEyWBWjmE3REcKV/view?usp=sharing)
Email: [email protected]
Fullstack developer (~14 years). Looking for relocation options.
------
nikon
Location: Toronto, Canada
Remote: Yes
Willing to relocate: No
Technologies: Go, Typescript, Docker, Kubernetes, Serverless, Cassandra,
Postgres, Elasticsearch.
Résumé/CV: Email
Email: [email protected]
Github: [https://github.com/sjdweb](https://github.com/sjdweb)
\--
I've just relocated to Toronto, Canada in March from London, UK and I am
actively seeking local or remote contract opportunities.
I'm a seasoned senior developer with team lead experience. I mainly work with
distributed backend Node or Go systems, and also have strong DevOps
experience. Would love to build out my network and discuss projects for 2020.
------
menilv
Location: Sarajevo, Bosnia and Herzegovina
Remote: Yes
Willing to relocate: No
Technologies: Android (Java & Kotlin), Swift, Dart (Flutter), JS, Rx, git
Résumé/CV: https://www.linkedin.com/in/menilv/
Email: [email protected]
I spent the last 3 years working on fin-tech and health-tech startups, most
notably NAGA Social, so I can contribute in a fast-paced environment, but I am
not exclusive to startups. I am willing to work as a mobile or backend
engineer. Stay safe.
------
malnoxon
Location: Wisconsin
Remote: Yes
Willing to relocate: No
Technologies: Fullstack web development with C#/ASP.NET, Python, JavaScript,
TypeScript. Open to working with other languages/frameworks.
LinkedIn: [https://www.linkedin.com/in/dan-
kaczmarek-4aa1496a/](https://www.linkedin.com/in/dan-kaczmarek-4aa1496a/)
Resume: Available upon request, or just look at my LinkedIn
Email: [email protected]
2.5 years doing fullstack web development recently, looking to either continue
doing fullstack/backend web development or work on standalone desktop
applications.
------
jahor10
Location: San Francisco, CA
Willing to work remote: YES
Technologies: Product development, sales, business development, Excel VBA,
Python, Six Sigma, Google Analytics, Salesforce
Linkedin:
[https://www.linkedin.com/in/jahor10/](https://www.linkedin.com/in/jahor10/)
Resume:
[https://drive.google.com/file/d/1xMS7H96uRmt4gemY1pY9xMWTZ7u...](https://drive.google.com/file/d/1xMS7H96uRmt4gemY1pY9xMWTZ7uuoOZC/view?usp=sharing)
Email: [email protected]
------
kvzcanvas
Location: Berlin, Germany
Remote: Yes
Willing to relocate: No
Technologies: Go, Perl, Terraform, Kubernetes, Docker, helm, Postgres, Redis,
Aerospike
Résumé/CV: send me an Email
Email: [email protected]
I am a SRE/Developer with more than 10 years of experience. I have migrated
several companies to the cloud and mainly to Kubernetes. I have done fully
automated CI/CD. I am very cost conscious. As a programmer I have developed
several services in Go and in the past in Perl for high traffic products. I am
looking for a new company that I can join and enjoy. Please only contact from
companies directly.
------
Lukabaram
Location: NYC
Remote: Yes
Willing to relocate: Yes
Technologies: JavaScript, React, Redux, Ruby, Ruby on Rails, SQL, PostgreSQL, Git, SASS/CSS, HTML, Jest, CI/CD, Tableau
Résumé/CV: https://www.linkedin.com/in/luka-baramishvili/
Email: [email protected]
Passion in Creative Coding and Live Coding turned into Full Stack Software Development (Frontend Focused). Background in
Data Analytics, Finance, Business Development.
------
hessproject
Senior software engineer, ~5 years experience at both large and small
companies. Laid off today due to Covid-19
Location: Los Angeles, CA (west side)
Remote: Yes
Willing to relocate: No
Technologies: Python (Django and Flask), Java (Spring), Javascript (Node,
React, and Angular 1 and 2), Cloud (AWS and Azure).
Resume/CV:
[http://linkedin.com/in/hessproject](http://linkedin.com/in/hessproject). Full
resume on request. Most recent jobs are:
-Senior Software Engineer @ Currency (Fintech startup)
-Senior Software Engineer @ Capital One
-Contract Software Engineer @ JPMorgan Chase
Email: [email protected]
~~~
fuzzieozzie
May want to update your LinkedIn to be consistent with this note.
------
sashavingardt2
I'm a full stack, data focused eng with 20 years of exp. I specialize in
building out products end to end, either as a tech lead or as an IC. Worked at
big corps as well as startups. Location: US / Europe / Central America Remote:
Yes Willing to relocate: No Technologies: Elm + JS/Python data stack/SQL/AWS
Email: alexander (dot) vingardt (at) gmail.com Medium:
[https://medium.com/@sashavingardt](https://medium.com/@sashavingardt)
------
willlff
Location: Columbus, GA USA
Remote: yes
Willing to relocate: yes
Technologies: Laravel, React, Vue, Spring Boot, MySQL, Linux Servers,
Electron, Azure, Digital Ocean
Résumé/CV: [https://www.linkedin.com/in/william-
fowler-1b29359a/](https://www.linkedin.com/in/william-fowler-1b29359a/)
Website: [https://linktr.ee/willfowler](https://linktr.ee/willfowler)
Email: [email protected]
I am a full-stack developer studying design on the side and would love to join
a team with strong engineers to learn from.
------
odomojuli
Location: Los Angeles, CA
Remote: Yes
Willing to relocate: Later, not for now
Technologies: CSS/HTML/JavaScript (React, Vue), Python (Django / Flask /
Jupyter), PostgreSQL, Unix / Linux, Figma / Adobe
Resume: [email protected]
Email: [email protected]
Website: [https://odomojuli.com/](https://odomojuli.com/)
I am a fullstack developer and designer who works in data science and machine
learning. I take models into boutique applications and design the interface.
I'm looking for any opportunities at the moment. Oh and I'm pleasant to work
with.
------
jaw
Location: Seattle, WA
Remote: Yes (preferred)
Willing to relocate: No
Technologies: Java, Ruby, Rails (8+ years); JS, React; would be happy to learn
more Rust, Go, or whatever for the right project
Résumé/CV: [https://brokensandals.net/code/#professional-
experience](https://brokensandals.net/code/#professional-experience)
Email: [email protected]
I'm usually drawn to backend work, but can pitch in on front-end stuff when
necessary. I have about 9 years experience developing in a corporate
environment and 10 years before that of coding for fun.
------
pauliusz
Hello! We're a team of two software engineers, each with 14+ years of
experience. We are based in Vilnius, Lithuania (EU). Our most recent projects
were done using React Native and React for the frontend, Flask and Vert.x for
the backend.
Location: Vilnius, Lithuania (EU)
Remote: Yes
Willing to relocate: No
Technologies: Python (Flask, Django, Pandas, Apache Airflow), Java (Vert.x,
Spring etc.), JS (React, React Native), AWS, Docker, PostgreSQL, MySQL,
Elasticsearch, Kafka.
Website: [http://codemates.co/](http://codemates.co/)
Email: [email protected]
------
tekno45
Location: Portland, OR
Remote: willing
Willing to relocate: to major cities
Technologies: AWS, python, kuberenetes, terraform, jenkins, gocd
Résumé/CV: https://www.linkedin.com/in/joseph-greene-a9616a29/
Email: [email protected]
\--- Experienced in handeling ci/cd in cloud native enviornments. Expert AWS
infrastructure knowledge Operations focused SRE, i look for opportunires to
automate the development life cycle wherever improvement can be found
------
thekhatribharat
Location: Bangalore, India
Remote: Yes
Willing to relocate: Yes
Technologies: Go, Python, Java, JavaScript, Kubernetes, Docker, OpenShift,
ReactJS, SQL, MongoDB, Cassandra, Kafka, Elasticsearch, RabbitMQ, Redis,
InfluxDB, Git, SaltStack, AWS, Google Cloud
Résumé/CV: Available on request (LinkedIn:
[https://www.linkedin.com/in/bkhatri/](https://www.linkedin.com/in/bkhatri/))
Email: [email protected]
Blog: [https://medium.com/open-factory](https://medium.com/open-factory)
~~~
thekhatribharat
_recruiting agencies and headhunters_ : be specific about the opportunities in
the email itself rather than expecting one to hop on a call straightaway.
------
hhuang123
Hi! I'm Henry — a new grad at Skidmore College. I focused mainly on designing
and deploying ML architecture — although I'm very open to any and all backend
opportunities.
Location: Chicago, IL
Remote: Yes
Willing to relocate: Yes
Technologies: Python, Java
Resume:
[https://drive.google.com/file/d/1V4-R5EbMdPBa3pGW4vYPAiIvd14...](https://drive.google.com/file/d/1V4-R5EbMdPBa3pGW4vYPAiIvd14JDC2S/view?usp=sharing)
Email: [email protected]
------
iAmSean
Location: Cincinnati, OH
Remote: Yes
Willing to relocate: No
Resume: [https://bit.ly/2Jt9b9v](https://bit.ly/2Jt9b9v)
Email: [email protected]
Experience: 10 years as a C# web and application developer.
Objective: Full or Part-Time Software Development, ideally as a lead.
Keywords: C#, ASP.NET MVC, ASP.NET WebAPI, REST, StructureMap, Xamarin, MVVM,
JavaScript, CSS, HTML, SQL, SQL Server, SQLite, Entity Framework, React,
Knockout, JQuery, Node.js, IIS, AWS, Mercurial, Selenium IDE, Selenium
Webdriver, C++, VB6, RequireJS, PhantomJS, Debian, Unity, Blender, Python
------
2078795763
Location: Palo Alto, CA, USA [US citizen]
Remote: yes
Willing to relocate: no
Technologies:
\- Robotics: ROS, general robotics know-how, full-stack prototyping of simple
mobile robots. Managed a team of hardware/software engineers for 3+ years to
design, produce and deploy a fleet of robots.
\- ML: TensorFlow, PyTorch (with focus on perception problems)
\- Autonomous vehicle system architecture (hacked a car and built my own
neural net based L2 lane-keep + ADAS system)
\- Languages: Python, C, C++, NodeJS
\- Data: MongoDB, Elasticsearch, Redis
\- Cloud: AWS, Docker
Keeping this post anonymous but will to disclose identity + github + resume to
interesting companies.
E-mail: [email protected]
------
andriuspl
Hi! I am a full-stack software engineer with more than 10 years of experience
architecting and implementing web, mobile and backend solutions, primarily
using Java, Python and React.
Location: EU
Remote: Yes
Willing to relocate: No
Technologies: Java, Python, React, JavaScript, AWS, Docker, ElasticSearch,
Apache Kafka, AWS, Docker, Flask, Pandas, Hadoop, Hive, HBase
Résumé/CV:
[https://www.linkedin.com/in/andriuspaulauskas/](https://www.linkedin.com/in/andriuspaulauskas/)
Email: andriuspl [at] gmail.com
------
iamtheworstdev
Location: South Bend (ish), Indiana Remote: yes Relocate: no Tech: AWS
(professional certs, 7 years experience with fed govt and banks, Terraform,
CDK, CloudFormation ), Nodejs, React Resume: upon request (I don't have a
current one) Email: [email protected]
I'm a contract programmer/consultant, I primarily pitch myself as a short term
or stop gap resource. Predominately backend bits in AWS but trying to get more
front end / mobile work. Currently available for about twenty hours a week.
------
jurnal2
Location: Jakarta, Indonesia
Remote: Yes
Willing to Relocate: Singapore, Tokyo, Ottawa, Vancouver
Résumé: [https://drive.google.com/open?id=1S7H50Cn_Hj0gdaZxSkU-
TdP0Jl...](https://drive.google.com/open?id=1S7H50Cn_Hj0gdaZxSkU-TdP0Jl6V3TK9)
Technologies: ES6+, React.js, Typescript, Node, HTML/CSS, Webpack, REST API,
and more.
Email: [email protected]
I am a generalist front-end engineer with broad interest with five years of
experience. Worked in different roles dealing with Product Development and
Solution & Enterprise Architecture.
------
gosterweil
I'm graduating in May and looking for work starting around June. I'm looking
for primarily pentest or security engineering jobs, but will also consider
software engineering. I have internship experience doing pentesting.
Location: New York, US
Remote: Either
Willing to relocate: Yes
Technologies: Webapp and Network penetration testing. Python/Ruby/C/Java/SQL.
Linux/Windows
Résumé/CV:
[https://georgeosterweil.com/resume.pdf](https://georgeosterweil.com/resume.pdf)
Email:george[at]georgeosterweil.com
------
unfernandito
Location: CABA, Argentina
Remote: Yes
Willing to relocate: Yes
Technologies: NodeJS, Javascript, React, RubyOnRails, Python, Golang, docker,
kubernetes, git and open to learn new techs
Résumé/CV:
[https://www.linkedin.com/in/unfernandito/](https://www.linkedin.com/in/unfernandito/)
Email: [email protected]
Hi. My name is Luis Betancourt. I'm a young developer looking new challenges.
I've experience building robust products from scratch on differents tech;
Actually work as tech lead with another 4 people.
------
elmarschraml
Location: Munich, Germany
Remote: yes
Willing to relocate: no
Profile: Engineering Manager
Experience: Software engineering background (Java, Web), project management
experience, Consulting/Requirements/ProductOwner, Solution Design and
Architecture. Recruiting, training and mentoring junior devs. Domain knowledge
in ecommerce, PIM and DAM.
Resume:
[https://elmar.files.wordpress.com/2020/01/schraml_elmar_resu...](https://elmar.files.wordpress.com/2020/01/schraml_elmar_resume.pdf)
Email: [email protected]
------
tajd
Location: South coast, UK (includes London)
Remote: Yes
Willing to relocate: I'm interested!
Technologies: Python, Julia, Matlab, Docker, cloud (Heroku, AWS), CI/CD, SQL,
writing documentation, tests
Résumé/CV:
[https://tajd.github.io/assets/thomas_dickson_cv.pdf](https://tajd.github.io/assets/thomas_dickson_cv.pdf)
Email: on cv
I'm interested in work as a data analyst or developer, working with Python or
Julia. If you read my CV and think you might have something interesting for me
then please get in touch!
------
23B1
Location: New York, NY (NYC)
Remote: Yes
Willing to relocate: No, but happy to travel for the right role
Technologies: Familiar with multiple verticals (finance, healthcare, B2B, B2C,
consumer product, IoT, consulting, salesforce, etc) innovation, etc.
Résumé/CV: I can offer 12+ years of executive leadership experience and three
successful exits. Since 2014 I've won over $102M in net new revenue and
unlocked over $1Bn in capital investment. I am currently seeking growth roles
(sales, Chief Growth Officer (CGO), Chief Revenue Officer (CRO).
Email: [email protected]
------
jakenberg
Location: Los Angeles, USA
Remote: Yes (EST/PST timezones OK)
Willing to relocate: No
Technologies:
* Security Engineering, Pentesting, Cryptography
* Ruby on Rails, React/JavaScript, GraphQL, Swift/iOS
* AWS, Docker
Résumé/CV: https://www.dropbox.com/s/aqnplhcmx634t3w/Resume.pdf
Email: hello [AT] jakenberg.io
Website: http://jakenberg.io
------
vaggdan
SEEKING WORK
Location: Amsterdam, NL
Remote: Yes
Willing to relocate: No, but willing to travel
Technologies: Java, Spring Boot, Python, PHP, HTML, CSS, JavaScript, Web
Components, Angular, Jenkins, Docker, MongoDB, MySQL, Elastic Search,
Logstash, Kibana, Redis, Apache Tomcat, Apache Kafka, & Linux.
Resume/CV: available upon request
Email: vaggdan[at]protonmail.com
Since 2014, I am offering custom Mobile, Software, and Web Application
development consulting in order to build world-class applications, tailored to
your needs, that is built with love.
Would you like to have a chat? Hit me up @ vaggdan[at]protonmail.com
------
skeletal88
Location: Tallinn, Estonia
Remote: yes
Willing to relocate: no
Technologies: C++, Python, Ruby on Rails, Go, PostgreSQL, Qt
Résumé/CV: https://www.linkedin.com/in/t%C3%B5nis-m%C3%A4rtmaa-90601026/
Email: [email protected]
Experienced backed developer with front-end experience. I have been doing
mostly backend development in Python, Go and C++. Currently learning Elixir,
because it looks like an interesting language.
------
kchhapia
Seeking a software engineering/machine learning role Location: No preference,
willing to relocate anywhere in the US Technologies: Java, Python, Machine
learning, NLP, AWS Email: [email protected]
Hi, I'm Kartik and I work as a software engineer at Amazon. Previously, i have
done a Masters in CS from a top university on the US and focused on machine
learning, natural language processing and AI. Also have a bunch of internships
in AI. Please reach out to me if you are hiring.
------
lemonchis
Location: Cathedral City, CA Remote: YES Willing to Relocate: NO Technologies:
HTMl, CSS, Javascript, REACT, VUE, Wordpress, Adobe. Resume:
[https://static1.squarespace.com/static/54ea30fde4b09706d4a8c...](https://static1.squarespace.com/static/54ea30fde4b09706d4a8cd9b/t/5e2893f1443f762e374313c5/1579717618123/Adrian_Resume_Final_2019.pdf)
Email: [email protected]
------
sirwitti
Hi, I'm Martin - a full stack developer turned UX/product designer. I have 10+
years of experience concepting/developing web applications and am available
for freelance work atm.
Location: Austria, Europe
Remote: Yes
Willing to relocate: No
Technologies: Vue, ES6, Node, Docker, Drupal, Figma, Axure and many others you
probably won't be interested in.
Résumé: Since I'm usually acquiring via word of mouth I stopped updating mine
several years so. I have worked on/was part of 100+ projects including multi-
million-exit startups.
Email: me [ät] martinwittmann.at
------
gramontblanc
non-cs amateur artist / student with background in philosophy and mathematics
emerging from medical sabbatical. moved to the Bay two months ago to save &
apply to colleges to pursue education in cs. with neo-covid lockdown in place,
looking for any internship, apprenticeship, or mentor-mentee volunteer /
working relationships to make good use of the locale. no prior work experience
in 'tech', but personal-project-experienced in network, security, and web
stack technologies; can confidently assemble, physically
install,image,configure servers / network appliances. interested in web
development, generative art, evolutionary algorithms, steganography,
applications of cryptography that aren't exit scams.
Location:South Bay (San Jose area)
Remote:prefer on-site, current global pandemic excepted.
Willing to relocate:no
Technologies:(net)bsd, care and feeding of proprietary OS, anomymization tools, shell scripting, regular expressions (slowly and poorly),virtual machines, networking (hardware installation, troubleshooting, etc), saw, drill, and lathe, cordage, knot-tying, stencilwork, painting.
Will learn any interpreted language on request. Résumé/CV:please email if
interested. Email:[email protected]
------
Deivuh
Location: Guatemala City, Guatemala
Willing to work remote: Yes
Relocation: Yes
Technologies: Swift, Objective-C, Realm, Ruby, Rails, Java, C#, Postgres SQL,
MongoDB, HTML, CSS, Unix, Git.
Graphic design: Sketch, Illustrator, Photoshop
Resume:
[http://davidhsiehlo.com/assets/resume.pdf](http://davidhsiehlo.com/assets/resume.pdf)
Email: me[at]davidhsiehlo.com
I've worked on freelance projects and also have a couple of project of my own,
I wear many hats needed to design and develop a product from ground up, and
market it.
------
aashishkoirala
Location: Boston, MA
Remote: Yes
Willing to relocate: No
Technologies: .NET/.NET Core/C#, SQL, JS, Angular/React, Azure, Kubernetes,
Docker, Terraform, DevOps
Resume/CV: [https://www.aashishkoirala.com/resume-ak-
hn.pdf](https://www.aashishkoirala.com/resume-ak-hn.pdf)
Email: [email protected]
Self-taught, 16 years software development experience, been working at a
hands-on principal/architect level, seeking similar. Polyglot - willing to
jump tech stacks for the right job. Super fast learner.
------
kissmd
Location: Hungary Remote: Yes Willing to relocate: No
Technologies: Angular, ngrx, node.js, JavaScript, HTML5, Semantic HTML, CSS3,
Responsive design, Sass, Git, GitHub, java, SQL.
Email: [email protected] LinkedIn:
[https://www.linkedin.com/in/miklos-
kiss-7317b849/](https://www.linkedin.com/in/miklos-kiss-7317b849/)
15+ years, 3+ years remote. I prefer non-timed based contracts.
If you have any kind of pain, send me an email, we will find a solution.
------
jimjag
Location: Maryland
Remote: Yes
Willing to relocate: No
Technologies: Open Source Strategy, Community
Résumé/CV: [http://www.jimjag.com/JimJagielski-
CV.pdf](http://www.jimjag.com/JimJagielski-CV.pdf)
Bio:
[http://www.jimjag.com/About_JimJag.pdf](http://www.jimjag.com/About_JimJag.pdf)
Wikipedia page:
[https://en.wikipedia.org/wiki/Jim_Jagielski](https://en.wikipedia.org/wiki/Jim_Jagielski)
Email: jimjag at gmail.com
------
atomicrat2552
Location: Toronto (US Expat)
Remote: Yes
Willing to relocate: Inside Canada, but avoiding if possible.
Technologies: Angular, TypeScript, React, Vue, GraphQL, Rust, Wasm, C#, .NET
Core, ASP.NET, Azure, Docker, Kubernetes, Kotlin, Android, C++, Python
Résumé/CV: [https://represent.io/berwyn](https://represent.io/berwyn) (PDF
available through link)
Email: [email protected]
Serial generalist, at my most recent job I've been a front-end dev, and the
primary DevOps, SysOps, and CorpIT point-of-contact.
------
annica
Location: Denver
Remote: Yes
Willing to relocate: No
Technologies: Python, JavaScript, Go, C, C++, Objective-C, Swift, Java, SQL, Map/Reduce, Django, Angular, Closure, JQuery, HTML, CSS, iOS, Android.
Résumé/CV: https://docs.google.com/document/d/1zgUiCFY9QTkdXWTdX_7AfMs6RuK8h1F6Ify7X9ZGRyo
Email: sam.barranco AT gmail.com
------
shostack
=== Marketing & Marketing Operations Leader ===
Location: Redwood City, CA
Remote: Yes, with experience building and managing remote teams.
Willing to relocate: For the right opportunity.
Technologies: A large swath of the most popular Martech/Adtech platforms
including: Google and FB Ads (and others), various bid management platforms,
GA, Adobe Analytics, Salesforce and other ESPs/CRMs, Google Tag Manager, GAM,
Looker, etc.
If I haven't used it yet, I can self-train and lead trainings for others.
Experience not just as an end user, but as the person owning the strategy,
budget and martech roadmap. I've led configuration and setup of complex and
large-scale integrations, supporting processes, etc. in close collaboration
with Data Science, Product, and Engineering teams. My creative outlet is
building beautiful dashboards and tools in Google Sheets/Excel that empower my
teams and leadership with insights and automation. I'm not an engineer, but
can code and often serve as the translator between engineering and marketing
or other business functions.
Résumé/CV:
[https://www.linkedin.com/in/michaelshostack/](https://www.linkedin.com/in/michaelshostack/)
Email: [email protected]
\---------------------------
Bio: Driven marketing and marketing operations leader with 15 years experience
building and leading cross-functional teams that deliver measurable results
across the tech and digital media landscape. My focus is architecting the
strategy, technical systems, content, and processes to market at scale. I
support my teams by nurturing a culture of testing, learning and collaboration
to help them stay ahead of the rapidly changing marketing landscape. Deep
expertise in lead generation, SaaS marketing, SEM, social, display, analytics,
marketing automation, and content marketing.
Looking For: Leadership and management roles dealing with some aspect of the
marketing/advertising landscape, whether that's on a company's marketing team,
or working on/with product teams at a martech/adtech company. My ideal role
has me deeply involved in the technical and analytical aspects of marketing
and leading high-performance teams that do the same.
------
dhogan
Location: Fort Wayne, Indiana
Remote: Yes
Willing to relocate: No
Technologies: JavaScript, Vue.js, C#, SQL
Résumé:
[https://www.dropbox.com/s/pf2tif5drtxonhi/DanHoganResume.pdf...](https://www.dropbox.com/s/pf2tif5drtxonhi/DanHoganResume.pdf?dl=0)
LinkedIn:
[https://www.linkedin.com/in/iamdanhogan/](https://www.linkedin.com/in/iamdanhogan/)
Email: on résumé
6+ years of fullstack experience with a wide variety of languages and tech.
------
867567838694
Location: Albany NY, USA
Remote: Yes. Interested in part-time or full-time work
Willing to relocate: No
Technologies: 22 years of experience. True full-stack architect: Node,
GraphQL, React, Postgres, gRPC, AWS management, microservices way too much too
list. lots of java and python in past-life. Tons of experience in high traffic
e-commerce and startups.
Résumé/CV:
[https://www.linkedin.com/in/russbrown00/](https://www.linkedin.com/in/russbrown00/)
Email: [email protected]
------
duckunix
Location: Houston, TX, US
Remote: Yes
Willing to relocate: No. Travel when restrictions lifted
Technologies: Linux, HPC, bash, CI/CD, Agile (scrum manager), people manager
Résumé/CV: https://www.linkedin.com/in/donaldharper/
Email: donald.m.harper //at// gmail.com
Systems automation and installation automation for Linux has been my main area
of work over the last 20 years.
------
jonathanpeterwu
Location: London
Remote: Yes
Willing to relocate: Yes
Technologies: React, GraphQL, Apollo, JavaScript, Rails, PostgreSQL, React,
AWS (ECS, S3, Lambda, API Gateway, Cloudfront), ElasticSearch, Docker, CI/CD
Email: [email protected]
Github: github.com/jonathanpeterwu
==
Experience working as a team lead on scoping/architectural design decisions as
well as an individual contributor on high performing teams. Comfortable within
fast-moving environment having founded and worked at early stage startups over
the past 6 years.
* Open to freelance or remote-first fulltime roles at this point.
------
aforehand
Location: New York, NY Remote: flexible Willing to relocate: no Technologies:
Python (pandas, scikit-learn, tensorflow), machine learning, SQL Résumé/CV:
[https://drive.google.com/file/d/1uOtKH9BrfQSfJZYuDgdNCH6JnFo...](https://drive.google.com/file/d/1uOtKH9BrfQSfJZYuDgdNCH6JnFo1TzDe/view?usp=sharing)
Email: [email protected]
------
roetlich
Location: Stockholm, Sweden
Remote: Yes
Willing to relocate: No
Technologies: C#, C++, js, typescript, react (native), ruby
Résumé/CV: [https://drive.google.com/file/d/1Sv1tF0cuZ0DsIfw-
gl2fAruc6hI...](https://drive.google.com/file/d/1Sv1tF0cuZ0DsIfw-
gl2fAruc6hINHStP/)
Email: [email protected]
Hi, I'm Till. I'm a sowftware engineer with about 1.5 years of experience and
I'm always looking for new stuff to learn, so email me if you have an
interesting project :)
------
timothyle85
Recently finished Software Design Engineer role at Xilinx working on
simplification and automation python framework. Interested in similar roles or
backend engineering.
Location: San Jose, CA, United States
Remote: yes
Willing to relocate: yes
Technologies: Python, C++, JS, Jenkins, Django, AWS, git
Résumé/CV: https://timothyle.github.io/resume.htm
Email: [email protected]
Linkedin and Git links in resume
------
skyriser
SEEKING WORK | Montreal, Canada | Remote/Freelance
Technologies: iOS/macOS, Objective-C/Swift
Web: http://chriscomeau.com
Resume/CV: http://chriscomeau.com/resume
LinkedIn: https://www.linkedin.com/in/christiancomeau
GitHub: https://github.com/chriscomeau
Portfolio: https://github.com/chriscomeau/Portfolio
Email: [email protected]
------
theeprince
Location: NYC
Remote: Remote / Onsite
Willing to relocate: Yes
Technologies: Fullstack JavaScript, React, Node.js, WebRTC, Three.js, RTMP, Ruby on Rails, Linux, git, Docker
Résumé/CV: https://jaydgoss.github.io/resume.pdf
Email: [email protected]
Expertise in implementing complex UI, animations, video, and social networks.
10 years of experience as a full-stack JavaScript developer building large
scale web and native applications.
------
kavyajha91
Location: Bangalore, India
Remote: Yes
Willing to relocate: Open to it (post COVID)
Technologies:
* Swift, SQL
* Design Software: Sketch, Adobe Illustrator, Photoshop
Résumé/CV:
* LinkedIn: [https://in.linkedin.com/in/kavya-jha-b3293930](https://in.linkedin.com/in/kavya-jha-b3293930)
* CV: [https://bit.ly/3aCrKnA](https://bit.ly/3aCrKnA)
* Self-published iOS App: [https://www.carbontrim.app/](https://www.carbontrim.app/)
Email: [email protected]
------
alexanderjbuck
Location: Baltimore, MD
Remote: Yes
Willing to relocate: Yes Southern California (preferred)
Technologies: Java, SQL, Linux, Docker
Résumé/CV: https://1drv.ms/w/s!Aq3bHD_1yf2h-T-13s8syFdU_F25
Email: [email protected]
I generally work on Java backends, I have also have done some interesting work
with vehicle classification and personnel scheduling. Have also learned R,
Rust and React for various projects.
------
hkryucr
Location: San Francisco, CA, USA
Remote: Yes
Willing to relocate: no
Technologies: Ruby on Rails, Node.js, React, Redux, JavaScript, HTML, CSS, and
PostgreSQL
Portfolio: [https://hkryucr.github.io/henry-
ryu/](https://hkryucr.github.io/henry-ryu/)
Resume: [https://hkryucr.github.io/henry-
ryu/resume_henry.pdf](https://hkryucr.github.io/henry-ryu/resume_henry.pdf)
Email: [email protected]
------
petarb
10+ years experience, passionate about building things for the web.
Location: San Francisco Bay Area
Remote: Yes, have previous experience working remote
Willing to relocate: No
Technologies: Javascript, React, Redux, Node.js, Express, Python, Flask,
Elasticsearch, Serverless, AWS
Résumé/CV: [https://drive.google.com/file/d/1PDKHGvZrU-
onHI9npHpNY6Ihx8C...](https://drive.google.com/file/d/1PDKHGvZrU-
onHI9npHpNY6Ihx8CpKV1G/view?usp=sharing)
Email: [email protected]
------
matt_hn_hiring
Location: Plano (Dallas DFW) TX
Remote: Yes (4 years exp).
Willing to relocate: No.
Technologies: JavaScript, Elixir, C#, Ruby, PHP. | React, Phoenix, .NET MVC,
Rails, CakePHP. | Docker, K8s.
Résumé/CV: [https://www.dropbox.com/s/e3cy9pojp2pvq4x/matt-
resume-2020-0...](https://www.dropbox.com/s/e3cy9pojp2pvq4x/matt-
resume-2020-03.pdf)
Email: matt_hn_hiring (at) fastmail.fm
About: Full stack webdev with 11 years exp. Skilled in React and a variety of
backends, including Elixir.
------
corneaten
Location: Paris area, France
Remote: Yes
Willing to relocate: Yes
Technologies: Python, C, Java, OCaml, Flask for web development, Android on
mobile. I worked on various stuff, be it compilers, machine learning or
reverse engineering. Currently playing with Elixir/Phoenix.
Résumé/CV:
[https://drive.google.com/file/d/1HW_R9oF_fov6uXN-w8R81DblEvq...](https://drive.google.com/file/d/1HW_R9oF_fov6uXN-w8R81DblEvqu4oOe/view?usp=sharing)
E-mail: See resume
------
spitfire
Looking for remote data science contract work. Location: Earth. Remote: Yes,
remote only. Willing to relocate: No. Technologies: Usual data scientist
stacks, Linux, AWS. Machine learning: Tensorflow/Keras, Sklearn, pytorch,
Mathematica.
languages: Python, shell, postgres/SQL, scala, Mathematica, C, Java, etc.
frameworks: Django, Scala/Spark, Python/Numpy/Pandas, +others throught the years.
Email: in profile.
------
bnmort
Location: San Francisco, CA Remote: OK
Willing to relocate: Yes only to New York City
Technologies: Python, JavaScript (AJAX, JSON), HTML, CSS, SQL, Flask, React,
jQuery, Bootstrap, Jinja
Linkedin:
[https://www.linkedin.com/in/brittanymorton/](https://www.linkedin.com/in/brittanymorton/)
Github: [https://github.com/brittanynm](https://github.com/brittanynm)
Email: [email protected]
------
exakoustos
Location: Toronto, Canada Remote: Yes Willing to relocate: No Technologies:
Cloud/DevOps engineering. Primarily on AWS using Terraform, a bit of bash and
some python. Learning Kubernetes on EKS with Istio, Helm and Spinnaker.
Résumé/CV:
[https://www.linkedin.com/in/xakoustos/](https://www.linkedin.com/in/xakoustos/)
Email: [email protected]
------
kawsar
Name: Md Kawsar Hussen Title: Full Stack Developer Location: New York Remote:
Yes Willing to relocate: Yes Technologies: JavaScript, React, Node, HTML, CSS,
Vue Email: [email protected] Résumé/CV:
[https://drive.google.com/file/d/1cGDKNCS82beT4mSv0-hPrWKXNRc...](https://drive.google.com/file/d/1cGDKNCS82beT4mSv0-hPrWKXNRcJr_c7/view?usp=sharing)
------
danego
Location: Croatia
Remote: Yes (remote only)
Willing to relocate: No
Technologies: Swift, Objective-C for iOS development; C++; Go; some Ruby, Python
Résumé/CV: https://www.linkedin.com/in/druzman/
Email: drago_at_ruzman_dot_net
I'm an experienced iOS developer (10 years), worked mostly on multimedia and
VoIP/Chat apps. Looking primarily for contract work.
------
antocv
Location: Sweden
Remote: Yes, preferred, have a good home office setup.
Willing to relocate: No.
Frontend - Vue.js, static sites, old tech like JSP Struts and GWT needs to not be mentioned right?
Backend - Java, Python, C, PHP, SQL, bash, Postgres, Kafka, redis
DevOps - Jenkins, GitlabCI, AWS, docker & lxc, Kubernetes in Azure and GKE, GNU/Linux expert
Résumé/CV: at request
Email: [email protected]
------
dudus
Location: CA
Remote: Yes
Willing to relocate: Yes within the US
Technologies: Python, Node, JavaScript, Web Analytics, full stack, cloud Dev,
angular, django, front end dev, product manager
Résumé/CV:
[https://docs.google.com/document/d/1bauo_Rvh8behw-9RnyhdlXEV...](https://docs.google.com/document/d/1bauo_Rvh8behw-9RnyhdlXEV..).
Email: eduardocereto (a) gmail
I'm a product manager that is trying to change roles to SWE. Trying to go into
full stack or frontend.
~~~
jdmichal
I'm getting a 404 on your resume link.
~~~
dudus
[https://docs.google.com/document/d/1bauo_Rvh8behw-9RnyhdlXEV...](https://docs.google.com/document/d/1bauo_Rvh8behw-9RnyhdlXEVOawMdcpfLASYG_9qhGQ/edit?usp=drivesdk)
------
oscbco
Location: El Salvador
Remote: Yes (Written communication only)
Willing to relocate: No
Technologies: Javascript, Nodejs, React and a little bit of Electron and
Ansible
Email: [email protected]
Personal website: [https://oscbco.github.io](https://oscbco.github.io)
GitHub: [https://github.com/oscbco](https://github.com/oscbco)
LinkedIn: [https://linkedin.com/in/oscbco](https://linkedin.com/in/oscbco)
------
aaronmiler
Location: Portland, OR
Remote: Yes
Relocation: No
Technologies: Ruby (on Rails), React, Rspec, Sidekiq, CI/CD, AWS, Javascript,
Coffeescript
Resume/CV: Happy to provide it over email
LinkedIn:
[https://www.linkedin.com/in/aaronmiler/](https://www.linkedin.com/in/aaronmiler/)
Email: aaron at aaronmiler dot com
Full Stack Engineer with over 7+ years experience, with 6 of them being
remote. I've spent the past 5 years in Ed-Tech, and am looking for my next
opportunity.
------
VirenM
Film/ TV Production & Computer Science Double Major at New York University,
hobbies include trading and chess. Full stack web development.
Location: Hong Kong | New York | India (HK PR, eligible to work in NY)
Remote: Yes
Willing to relocate: Yes
Technologies: React/ React Native, JavaScript, Python, Java, AWS, git
Résumé/CV: https://virenmohindra.me/cv.pdf
Email: [email protected]
------
gwn7
Location: Paris
Remote: Yes
Willing to relocate: Yes
Technologies: Javascript, Python, Node, React, React Native, D3, Postgres,
advanced SQL, Linux, WebRTC, Ethereum
Résumé/CV: [http://gwn.wtf/resume.html](http://gwn.wtf/resume.html)
Email: dev at gwn dot wtf
Full stack hacker. Mostly startup oriented. Developed a lot of projects for
different teams and industries (finance, digital marketing, automation, online
education, e-commerce).
Looking for interesting & challenging projects and smart people.
------
michaelsamy
Location: Sydney, Australia
Remote: Yes
Willing to relocate: No
Technologies: UX Design, UI Design & Research. Figma, Sketch, XD, Jira,
Confluence, Notion, ProtoPie, Principle, Adobe Creative Cloud products
Resume/CV: [https://www.linkedin.com/in/michael-
samy/](https://www.linkedin.com/in/michael-samy/)
Email: [email protected]
\--
Product Designer with a background in marketing. Worked at PayPal, Adobe and
multiple startups. Design Sprint facilitator.
------
krazer
Location: San Francisco (Peninsula)
Remote: either way (full time or contract work)
Willing to relocate: maybe
Technologies: Full stack electrical engineer
* electrical design/test
* rf, power, analog, embedded
* specialized in optics/lasers
Résumé/CV: http://krazerlasers.com/contact/cv.pdf see also my projects at http://krazerlasers.com
Email:[email protected]
------
ErikLJ
Location: US/Bay Area/San Jose Remote: Yes Willing to relocate: No
Technologies: COO/Executive, Operations, Supply Chain, logistics, startup
ecosystem, angel investor Résumé/CV:
[https://www.linkedin.com/in/eriklindjacobsen/](https://www.linkedin.com/in/eriklindjacobsen/)
Email: [email protected]
------
izolate
Hey! I'm a seasoned full-stack engineer. Measure twice, cut once type of
personality. Actively interviewing, but thought I'd post here too.
Location: Philadelphia, PA
Remote: Yes
Willing to relocate: Yes
Technologies:
Frontend - React, Vue, Vanilla, GraphQL, Static sites
Backend - Node.js, Golang, Python, Dart, SQL (Postgres, Spanner), NoSQL
(Firestore, DynamoDB, MongoDB), Pub/Sub, Microservices
DevOps - AWS, GCP, Docker, K8s, Cloud Run, Serverless & Linux
About: [https://izolate.net](https://izolate.net)
Email: [email protected]
------
dizzystar
Location: Los Angeles
Remote: OK
Willing to Relocate: No
Primary Technologies: Python, Clojure, PostgreSQL, MySQL, PL/pgSQL
Currently learning: NodeJS, VueJS
GitHub: [https://github.com/dt1](https://github.com/dt1)
Current Project (being rewritten with some Node and Vue): [http://muse-
env.eba-gb2hjxvj.us-west-2.elasticbeanstalk.com/](http://muse-env.eba-
gb2hjxvj.us-west-2.elasticbeanstalk.com/)
email: [email protected]
------
em-bee
Location: european, living in china
Remote: yes
Willing to relocate: not at this time. maybe in the future
Technologies: Linux, frontend and backend webdevelopment, prototyping.
Résumé/CV: on request (20 years experience with web development, team lead,
CTO)
Email: see profile.
I am open to remote part time contract opportunities (up to 30 hours) as a
senior developer, teamlead, CTO, trainer or mentor
I am also able to build up a development team for you here in china, to help
you enter the chinese market or take advantage of chinese resources.
------
lfowles
Location: Wichita, KS USA
Remote: Yes
Willing to relocate: No
Technologies: C++, Python, Unreal Engine 4
Resume:
[https://www.lfowles.org/files/landonfowles_resume.pdf](https://www.lfowles.org/files/landonfowles_resume.pdf)
Email: [email protected]
\---
I'm a software engineer with 8 years experience that has taken the last 3
years to work on game development. I'm interested in both contract and
fulltime positions, especially interested in getting back into a team
environment :)
------
imagination
Location: Chicago, IL USA Remote: Yes Willing to relocate: no Technologies:
-Front-end: HTML5, CSS, SASS, Javascript, AngularJS, ReactJS EmberJS
-Back-end: Ruby on Rails, NodeJS , ExpressJS, Redis, Sidekiq, Wordpress, PHP
-Devops: AWS (EC2, S3, Route 53, DynamoDB, RDS), Heroku, Ngnix
-Test: Protractor, RSpec, Selenium
Resume: Linkedin:
[https://www.linkedin.com/in/keithlgordon/](https://www.linkedin.com/in/keithlgordon/)
Email: keith(at)welovecode.co
------
chumaumenze
Location: Lagos, Nigeria
Remote: Yes
Willing to relocate: Yes (Post-pandemic lockdown)
Technologies: Python, Django, Flask, Javascript, PostgreSQL, Vue.js, Rust,
Bash, AWS, Docker, DevOps, CI/CD
Résumé/CV: [https://chumaumenze.com/resume](https://chumaumenze.com/resume)
LinkedIn:
[https://linkedin.com/in/chumaumenze](https://linkedin.com/in/chumaumenze)
Email: chumaumenze [at] gmail [dot] com
------
cml
Location: Seattle
Remote: Possibly
Willing to relocate: SF/NYC/LA
Technologies: People management, JavaScript/React/Redux, d3, Ruby, AWS, JIRA
Resume: [https://angel.co/u/cmlaidlaw](https://angel.co/u/cmlaidlaw)
GitHub: [https://github.com/cmlaidlaw](https://github.com/cmlaidlaw)
Email: [email protected]
-
I enjoy and am good at people management but am open to an IC role for the
right opportunity. I am a US Citizen.
------
vance5980
Hi. I'm Nikolay. Experience: 2+ years as a Backend dev (working on Web, Mobile
and realtime MMO game projects; mostly using Node, C and Java).
Location: Russia (UTC+3)
Remote: Yes
Willing to relocate: Yes
Technologies: C/C++, js/typescript, Fullstack, React, Ruby, Python, Java/Kotlin (back-end), opengl/webgl, C#/Unity, etc.
Email: [email protected]
Interested in anything.
------
akulbe
Systems Engineer (Infrastructure as Code) I'm more interested in
freelance/contract short-term stuff.
Location: Portland, OR
Remote: Yes (already have 5+ years of experience working remote)
Willing to relocate: No
Technologies: Ansible, Chef, Git, CI/CD, Atlassian stack, AWS, Azure, VMware
(including vRealize Suite)
Resume/CV: [https://linkedin.com/in/akulbe](https://linkedin.com/in/akulbe)
email: [email protected]
------
bilater
Location: Seattle Remote: Yes Willing to relocate: No Technologies: Python,
SQL, Javascript, React, Gatsby, Flask Résumé/CV:
[https://www.linkedin.com/in/biltahir/](https://www.linkedin.com/in/biltahir/)
Email: [email protected]
Yes - I realize my expertise is in data but I am tired of data. Willing to
take a pay cut for a front end role. Cheers.
------
gouggoug
Location: San Francisco
Remote: Preference for a local office
Willing to relocate: No
Technologies: Kubernetes, Golang, Container Technologies, Docker, HAPRoxy, Varnish, Apache, Redis, Google Cloud, GKE, Google Cloud SQL, Pub/Sub, GlusterFS, PHP, Python
Résumé/CV: https://boxunix.com/resume-Hugues-Alary.pdf
Email: [email protected]
\---
9+ years of experience. 3 years on Kubernetes.
------
orblivion
Location: New Hampshire
Remote: Both
Willing to relocate: No
Technologies: Python, Go, Node.js, Haskell, Django, Flask, Postgresql
Résumé/CV:
* [https://danielkrol.com/assets/resume.pdf](https://danielkrol.com/assets/resume.pdf)
* [https://github.com/orblivion/me](https://github.com/orblivion/me)
Email: dan at danielkrol.com
~15 years total experience, ~10 years web/API development experience.
At the moment, looking for contracts.
* part time
* short term, full time
------
arthur-st
Location: Riga, Latvia
Remote: Yes, preferred. I have prior remote/distributed work experience.
Willing to relocate: Yes, after the pandemic crystallises.
Technologies: SQL, NoSQL, R (tidyverse, caret, Shiny), Python (pandas, scikit-
learn, Dash), Scala (minimal), Jupyter, H2O, Tableau, AWS/GCP, Unix/Linux
Résumé/CV: Details over email, in brief - lead data scientist (full stack +
team management) with international fintech experience.
Emai: arthur_st {at] fastmail /dot) com
------
topher515
Location: Oakland / San Francisco, CA
Remote: Yes
Willing to relocate: No
Technologies: Python, JavaScript, React, Docker, AWS, SQL, *nix
Résumé/CV: https://www.linkedin.com/in/ckwilcox/
Email: ckwilcox at gmail dot com
Full stack dev, with 12 years experience app developing in Python/JavaScript.
10 years experience building startups in Bay Area.
------
hhuang324
Graduating senior at Skidmore College looking to start work June!
Location: Chicago, IL
Remote: Yes
Willing to relocate: Yes, especially to Boston Area
Technologies: Python, Java, C++, Bash, SQL, sklearn (pydata environment as a
whole)
Resume/CV:
h[https://drive.google.com/file/d/1V4-R5EbMdPBa3pGW4vYPAiIvd14...](https://drive.google.com/file/d/1V4-R5EbMdPBa3pGW4vYPAiIvd14JDC2S/view?usp=sharing)
Email: [email protected]
------
androng
Location: San Francisco, CA Remote: yes
Willing to relocate: yes, to somewhere in CA
Technologies: C, nRF BLE Bluetooth Low Energy, Altium Designer, UART, SPI,
I2C, ARM
Résumé/CV:
[https://drive.google.com/open?id=14YpuhWT58XGCBLc0ZlnNJ_B_Zf...](https://drive.google.com/open?id=14YpuhWT58XGCBLc0ZlnNJ_B_ZfKcVi02)
Email: andrew @@@ speedysignals.com
Hardware/firmware engineer. I am used to startup environments but am flexible.
------
svartkanin
Location: Melbourne, Australia
Remote: Yes
Willing to relocate: No
Technologies: Python (Django, Flask), Golang, SQL/NoSQL (PostgreSQL, MySQL,
Oracle, Sqlite), C/C++, GCP, AWS, Bash, Git (Bitbucket, Github, Gitlab),
CI/CD, Docker, Kubernetes
Résumé/CV: [https://danielg-dev.com](https://danielg-dev.com)
\---
I'm a Software Engineer looking for things in the backend, api and cloud
space, either remote or onsite preferably in Melbourne though
~~~
Mandatum
I think I saw your post last month. Have you reached out to recruiters? Are
you having trouble finding work, or just looking for something better?
------
eberkund
Location: Toronto, Canada
Remote: Sure
Willing to relocate: Yes
Technologies/skills: Go, Docker, CI/CD, PHP, Laravel,
JavaScript, TypeScript, React, Redux, Vue, Electron,
Node.js, SQL, C# .NET, AWS, Python
Résumé: https://github.com/eberkund/resume/releases
LinkedIn: https://www.linkedin.com/in/erikberkundrevnig/
------
lukepaul
9 years full-stack experience looking for exciting opportunities to grow and
be challenged in. Love learning and quick at it.
Location: Christchurch, New Zealand
Remote: Yes, experienced
Willing to relocate: Yes, only to GMT+8,9
Technologies: Python, Django, Javascript, PostgreSQL, Webpack, AWS, DevOps
Résumé/CV: [https://www.linkedin.com/in/luke-
cossey/](https://www.linkedin.com/in/luke-cossey/)
Email: [email protected]
------
mjunaidi
Location: Cyberjaya, Malaysia
Remote: Yes
Willing to relocate: Yes
Technologies: Javascript, node.js, Nest JS, React
Résumé/CV: [https://mjunaidi.github.io](https://mjunaidi.github.io) (Web) |
[https://mjunaidi.github.io/docs/resume/Portfolio-M-
Junaidi.p...](https://mjunaidi.github.io/docs/resume/Portfolio-M-Junaidi.pdf)
(PDF)
Email: [email protected]
------
sqyttles
Location: Kansas City, MO USA
Remote: Yes
Willing to relocate: yes
Technologies: Django (including DRF), Python (2/3), JavaScript (AngularJS,
jQuery, learning React), C#, Java, SQL, PHP, AutoCad plugins, Salesforce,
Microsoft Dynamics CRM
Résumé/CV:
[https://resume.creddle.io/resume/832j4wf2u4j](https://resume.creddle.io/resume/832j4wf2u4j)
Email: [email protected]
------
nnash
Location: Minneapolis/St.Paul, Minnesota
Remote: Yes. Able to travel between 10-30% post covid.
Willing to relocate: Seattle, or Chicago.
Technologies: UI Design, UX Design, User Research, Rapid Prototyping, After
Effects and some HTML/CSS.
Résumé/CV: [http://nathan.mn/about](http://nathan.mn/about)
Email: [http://nathan.mn/contact](http://nathan.mn/contact)
------
ugurnot
Location: München / Germany
Remote: Yes
Willing to relocate: No
Technologies: python, c, c++, haskell, javascript, sql, pytorch, numpy, flask,
docker, git, elasticsearch
Résumé/CV:
[https://drive.google.com/file/d/1ZSl0sjSZ9xUBz28BxmgkNWT5AP3...](https://drive.google.com/file/d/1ZSl0sjSZ9xUBz28BxmgkNWT5AP3rPoJ9/view?usp=sharing)
Email: [email protected]
I am interested with any position with research focus.
------
zchwyng
Location: Malmö, Sweden
Remote: Yes
Willing to relocate: Yes
Technologies: JavaScript, React, React Native, NodeJS, TypeScript
Résumé/CV: [https://dahlsjoo.se/resume.pdf](https://dahlsjoo.se/resume.pdf)
Email: jonas.dalesjo at gmail dot com
LinkedIn: [https://www.linkedin.com/in/jonas-
dalesj%C3%B6-ba520026/](https://www.linkedin.com/in/jonas-
dalesj%C3%B6-ba520026/)
------
Austin_Conlon
Location: Mountain View, CA
Technologies: Swift, WatchKit, Cocoa Touch, SwiftUI
Portfolio: [https://apps.apple.com/us/developer/austin-
conlon/id11895089...](https://apps.apple.com/us/developer/austin-
conlon/id1189508961)
GitHub: [https://github.com/AustinConlon](https://github.com/AustinConlon)
Email: [email protected]
------
nbhartiya
Location: Oakland, CA
Remote: Yes, preferred
Willing to relocate: Yes, if it's Mexico City
Skills: Product, Growth, Sales
Technology: Ruby on Rails, React
Resume / CV:
[https://www.linkedin.com/in/nbhartiya](https://www.linkedin.com/in/nbhartiya)
Email: [email protected]
I'm a former founder who recently sold her company. Please do not contact me
for Engineering roles at this time. Looking for Product / Growth / Biz Ops
------
mack997
Location: Bengaluru Remote: Yes Willing to relocate: yes Technologies:
Android, Java, Kotlin, Dagger, RxJava, RxAndroid, Retrofit, Data binding, MVVM
Résumé/CV:
[https://drive.google.com/open?id=1eeg5-yLvrqDXN6vBrVLCu7vplW...](https://drive.google.com/open?id=1eeg5-yLvrqDXN6vBrVLCu7vplWglDQi-)
Email: [email protected]
------
matt-shirley
I'm a Quality Engineer looking for a new opportunity in development or
testing.
Location: Vancouver, Canada
Remote: Yes
Willing to relocate: No
Technologies: JavaScript, Ruby, Python
Résumé/CV: https://drive.google.com/open?id=1K1YJkbxxqTgD2-kVnvXJ4VWuHUPTcLTz
Email: [email protected]
Git: https://github.com/matthewshirley/
------
vasac
Location: Belgrade, Serbia
Remote: Yes (I have been working remotely for 5 years)
Willing to relocate: No
Technologies: Clojure (ClojureScript/reagent/re-frame), Java, JavaScript,
PostgreSQL, MongoDB, Kafka, AWS
Résumé/CV:
[https://www.dropbox.com/s/e3lxnjvkmav4iza/CV%20-%20Vaso%20Pu...](https://www.dropbox.com/s/e3lxnjvkmav4iza/CV%20-%20Vaso%20Putica.pdf?dl=0)
Email: [email protected]
------
JCrandell
Location: United States Remote: Only considering fully REMOTE roles at this
time.
Willing to relocate: no
Technologies: Ruby on Rails, JavaScript, Elixir, React Native
Résumé/CV: [https://www.linkedin.com/in/justin-
crandell-922530a4/](https://www.linkedin.com/in/justin-crandell-922530a4/)
Email: [email protected]
Again, I am ONLY considering fully REMOTE roles at this time.
------
jasper1235
Location: US, {ME/NH/MA}
Remote: Yes
Willing to relocate: No
Technologies: .NET, Python, JavaScript, SQL , Azure, AWS, RDBMS, Windows,
Linux.
Email: decompiled at gmail.com
Site: [http://www.decompiled.org/me.htm](http://www.decompiled.org/me.htm)
Most recently working in healthcare and previously telecom industries. My most
recent focus has been automation of resources on premise & in cloud as well as
data management.
------
zero_c00l
Location: Seattle area, USA
Remote: Yes
Willing to relocate: No
Technologies: C, C++, Python, Embedded, IoT, Schematic capture, Verilog,
System Verilog, RTL/TestBenches, Xilinx Vivado, Bash, FPGA, Electronics, rapid
prototyping
Résumé/CV:
[https://drive.google.com/open?id=1mo15i-XlIh4WwfTHqa0xEKXnlv...](https://drive.google.com/open?id=1mo15i-XlIh4WwfTHqa0xEKXnlvTT-
nII)
Email: [email protected]
------
Kishkumen_
Location: Illinois, USA Remote: Yes Willing to relocate: Yes Technologies: *
.NET Core, C#, Asp.Net MVC, Web API, Entity Framework, Full Stack * SQL
Server, Oracle, Redis Résumé/CV:
[https://www.linkedin.com/in/michaelsadler/](https://www.linkedin.com/in/michaelsadler/)
Email: msadler [at] gnolaum.com
------
dutchess
_Location:_ San Francisco, CA
_Remote:_ No
_Willing to relocate:_ No
_Technologies:_ PostgreSQL, Tableau, Python, GitHub, Jira, Excel, PowerPoint
_Resume:_ linkedin.com/in/elenachurilova/
_Email:_ [echurilova] at [my dot com]
Seeking for a Product Manager / Associate Product Manager position with
technology based product team. Proactive and enthusiastic leader, data-driven
and customer-centered product manager with 7+ years experience.
------
vdb7892
Location: Currently in Asia (EU citizen)
Remote: Yes
Willing to relocate: Yes
Technologies: Linux, SQL, PHP, Laravel, Typescript, Vue.js, Node.js, Python
Email: [email protected]
10 years experience in architecture, management and development of high
throughput web/e-commerce applications. Interested in working with e-commerce,
fintech, and/or cryptocurrency.
Ping me and I'll send you my resume, my Github profile and a few lines about
how I can add value to your company.
------
thomasin500
1 point by thomasin500 9 days ago | parent [-] | on: Ask HN: Who wants to be
hired right now?
Location: Denver, CO Remote: yes
Willing to relocate: for a dream job, yes, but otherwise no
Technologies: Ember, React, NodeJS, Full Stack, ruby, rails, php, etc
Résumé/CV:
[https://www.linkedin.com/in/thomasfreemanusf/](https://www.linkedin.com/in/thomasfreemanusf/)
Email: [email protected]
------
jibbers
Location: Washington, USA
Remote: Yes
Willing to relocate: Unlikely
Technologies: UI Design, UX Design, High-fidelity prototyping, Pixel-perfect
mockups, Sketch, HTML5, CSS3, SVG, Web animations, GitHub, Responsive web
design
Résumé/CV:
[https://dillonbrown.me/résumé.pdf](https://dillonbrown.me/résumé.pdf)
Email: [email protected]
Interface designer with front-end web development knowledge and remote work
familiarity.
------
tkyjonathan
Location: UK, Horsham Remote: Yes Willing to relocate: No Technologies: Data
Engineering, Data Architecture, Data Performance Engineering, Java, Python,
SQL. Résumé/CV:
[https://www.linkedin.com/in/jonathanlevin/](https://www.linkedin.com/in/jonathanlevin/)
Email: [email protected]
------
cmuller
Location: Seattle
Remote: Open
Willing to relocate: No
Technologies: Golang, Ruby, JavaScript/TypeScript, React, Ruby on Rails, Linux
(Ubuntu), SQL, HTML, CSS/Sass
Résumé/CV:
[https://www.clairemuller.me/resume](https://www.clairemuller.me/resume)
Email: [email protected]
Full-stack junior engineer looking for my next role! Hoping to find a company
with a great culture, mentorship, and growth opportunities.
------
dmitryz
Hi, I’m Dmitry, an IT consultant. Open for extra work.
Location: Russia, 80$/h, wire transfer
Remote: Yes
Willing to relocate: Possible, B1 visa
Technologies: primary Java + AWS stack. Secondary Angular, sql/nosql, etc ...
Résumé/CV: https://www.linkedin.com/in/dmitriy-zlykh-300b2b76/
Email: [email protected]
------
ironschool
Location: Bangalore, India
Remote: OK, can relocate as well
Willing to relocate: Yes
Technologies: C, Elixir, Lua, Android
Resume:
[https://drive.google.com/file/d/1dVX0umTT3edsPB4_HSaNZ6VE4XP...](https://drive.google.com/file/d/1dVX0umTT3edsPB4_HSaNZ6VE4XP0g9e8/view?usp=sharing)
I am looking for full time positions and can both manage a team as well as be
an Individual Contributor.
------
antibland
Location: Portland, OR
Remote: Preferred
Willing to relocate: Yes (outside of US)
Technologies: JavaScript (Express, React, Gatsby), GraphQL, MongoDB, Advanced
CSS, WAI-ARIA
Experience: 20 years
Website: [https://andyhoffman.codes](https://andyhoffman.codes)
Résumé/CV:
[https://andyhoffman.codes/Andy_Hoffman_CV.pdf](https://andyhoffman.codes/Andy_Hoffman_CV.pdf)
Email: [email protected]
------
yasikovsky
Looking for solution architecture, engineering leadership, management or
senior developer roles. Willing to learn a lot if not fully fitting, but the
opportunity is interesting.
Location: Sopot, Poland
Remote: yes, strongly preferred (8 years remote experience)
Willing to relocate: no
Technologies: C#, .Net Core, React, TypeScript, AWS, Python, Unity
CV: [https://cv.jasikowski.pl](https://cv.jasikowski.pl)
Email: [email protected]
------
nonzerobit
Location: DC Metro Area
Remote: Yes
Willing to relocate: Yes
Technologies: Python (Pandas/matplotlib, Django, Flask), JavaScript, Linux,
AWS, MySQL/PostgreSQL, PHP/WordPress
Résumé/CV: Via email.
Email: [email protected]
I'm a generalist by experience, but feel comfortable in most any role with any
tech stack. I'm a good fit for roles where communication skills are important,
or for adding value by identifying and solving difficult problems.
------
natthan
Location: Vancouver, British Columbia, Canada
Remote: Yes
Willing to relocate: Yes
Technologies: C, Lua, Python, Go, Git, UNIX Command Line
Résumé/CV: [https://ansimita.github.io](https://ansimita.github.io)
Email: natthan [at] alumni [dot] ubc [dot] ca
New graduate/junior/entry-level interested in embedded systems, system
programming, and open source software. Not interested in Java, web
development, or Windows.
------
svpdw
Location: Boston MA
Remote: Yes
Willing to relocate: Yes but only to NYC or Denver
Technologies: Python (Pandas, scikit-learn, Tensorflow, PyTorch, Numpy, Bokeh,
Jupyter) GCP (GCS, BigQuery, Kubernetes), AWS, Terraform, Docker, and Java
(though not preferred).
Looking for data scientist, machine learning engineer, and AI research
positions. (No data engineering or primarily infrastructure roles).
Resume/CV: isaacmg.github.io
Email: [email protected]
------
teekay
Location: Prague, Czechia, Europe
Remote: yes, only remote and only contract jobs
Willing to relocate: no but will travel to meet you once that's possible
Technologies: .NET, then Node.js (Typescript rules!), PHP (Laravel is pretty
awesome). Often MongoDB but prefer SQL wherever possible.
Resume: [https://tomaskohl.com/about/](https://tomaskohl.com/about/)
Email: [email protected]
------
MackTuesday
Focus on research and engineering for multimedia applications, but open to all
opportunities.
Location: Dallas, Texas
Remote: Preferred
Willing to relocate: Perhaps
Technologies: C/C++, Lua, Matlab/Octave, Smalltalk, Swift, Javascript, Java,
Python
Résumé/CV:
[https://www.linkedin.com/in/brentlehman1](https://www.linkedin.com/in/brentlehman1)
Email: mailbjl(at)gmail(dot)com
------
teh_klev
Location: Scotland
Remote: Yes
Willing to relocate: No
Technologies: .NET, .NET Core, C#, SQL/NoSQL, Javascript etc, IIS/Apache/NGINX, PHP, Python
Resume/CV: https://stackoverflow.com/users/story/419?view=Cv
Email: [email protected]
Prepared to work on a non-permanent hourly or daily rate.
------
ffmike
Location: Newburgh, Indiana, USA
Remote: Yes (only - been a remote worker for > 20 years)
Willing to relocate: No
Technologies: Rails, Ruby, AWS, etc
Résumé/CV: https://www.linkedin.com/in/mike-gunderloy-47bba4143/
Email: [email protected]
Happy in individual contributor, tech lead, or EM roles, among others.
------
hudvin
Location: Ukraine Remote: Yes!!!
Willing to relocate: someday
Technologies: Deep Learning/Computer Vision (convnets, facenet, image
classification, segmentation, opencv, keras, scikit-image etc), Python Backend
Stack
CV: [https://drive.google.com/open?id=1RF-
eoiC5GMVhJwSvKZsy32bVto...](https://drive.google.com/open?id=1RF-
eoiC5GMVhJwSvKZsy32bVto..).
email: [email protected]
------
curena
Location: Austin
Remote: Yes!
Willing to Relocate: No
Technologies: Java, Spring, MySQL, Postgres, Docker, Kubernetes, Kafka, AWS
Résumé:
[https://www.linkedin.com/in/cecilurena/](https://www.linkedin.com/in/cecilurena/)
[https://github.com/curena](https://github.com/curena)
email: [email protected]
------
ruffrey
Available for part time contracting or other opportunities.
Location: Sacramento CA US
Remote: preferred. Been remote for 7 years.
Willing to relocate: No
Technologies: (years) Node.js (8), React (5), Postgres (8), MySQL (10), Golang
(5), Mapping/GIS (2), MongoDB (7), Agile (10)
Resume:
[https://www.linkedin.com/in/jeffhparrish](https://www.linkedin.com/in/jeffhparrish)
Email: see profile please
------
vybhavb
Location: Cupertino/Bay Area, California.
Remote: Yes
Willing to relocate: Not opposed to it
Technologies: Javascript, React.js, Vue.js, Node.js, React Native, Electron,
MongoDB, MySQL, PostgreSQL, SASS, Java, Firebase Stack, AWS, Flask, Express,
Python, Pandas, Numpy, Kotlin, C/C++,
Résumé/CV: [https://vybhavb.com/resume](https://vybhavb.com/resume)
email: [email protected]
------
congdv
Location: Waterloo/Toronto, Canada
Remote: Yes
Willing to relocate: Not immediately
Technologies: MERN Stack, GraphQL, TypeScript, Javascript
Résumé/CV: https://www.linkedin.com/in/congdv/
Github: https://www.github.com/congdv
Email: congdaovan94(at)gmail.com
Portfolio: congdv.github.io
------
efemer
Location: Dhaka, Bangladesh
Remote: Yes
Willing to relocate: Yes
Technologies: Amazon Web Services, NodeJS, PHP/Laravel, MongoDB, DevOps,
Analytics/BI, Python/Flask, Data Streaming/Kafka, Supervised Machine Learning,
GCP/Azure, Design Data Model, C#/ASP.NET Core, Angular, VueJS
Resume: [https://bit.ly/efemer](https://bit.ly/efemer)
Email: efemer at gmail dot com
------
yoricm
Location: Europe (Spain)
Remote: Yes
Willing to relocate: No
Technologies: Go, Rust (learning), PHP, Git, HTML/CSS, Javascript, React, Docker, Linux, MySQL, PostgreSQL
Résumé/CV: https://yoricm.com
Email: [email protected]
Fullstack Developer, CS degree, 15 years professional experience, 2 years
remote as lead developer.
------
machtesh
Location: Tel Aviv
Remote: Yes
Willing to relocate: No
Technologies: Javascript, Vue.js, HTML/CSS
Résumé/CV:
[https://www.linkedin.com/in/aarontayloril/](https://www.linkedin.com/in/aarontayloril/)
Email: [email protected]
I do front-end development and design (UX/UI), most recently rebuilding and
redesigning a popular SaaS web app. Ideally looking for a product role.
------
loki235
Location: India
Remote: Yes
Willing to relocate: No
Technologies: Python (Django), Cloud Platform(AWS), Nginx, Celery, React.js,
React-Native, Gatsby, Javascript, HTML, CSS, Wordpress, AMP
LinkedIn:
[https://www.linkedin.com/in/lokeshgarg90/](https://www.linkedin.com/in/lokeshgarg90/)
Email: [email protected]
------
gwbas1c
Location: Cape Cod, Massachusetts
Remote: Yes
Willing to relocate: No
Technologies: C# / .Net, full stack and desktop, some Javascript and Objective
C
Résumé/CV: [https://www.linkedin.com/in/andrew-
rondeau-56490a4/](https://www.linkedin.com/in/andrew-rondeau-56490a4/) (More
formal resume available upon request)
Email: andrew.rondeau - at - gmail - dot - com
------
skuttled
Location: Oregon
Remote: Been working remote For 10 years
Willing to relocate: No
Technologies: Hardware Design Engineer focusing on system level design for 15
years with 16 years of Altium PCB experience
Résumé/CV: available on LinkedIn @
[https://www.linkedin.com/in/shaolo/](https://www.linkedin.com/in/shaolo/)
Email: [email protected]
------
funnymania
Location: seattle
Remote: yes, of course
Willing to relocate: maybe later
Technologies: node, vue / react, pwa, aws ec2 + ebs, spa dev
Résumé/CV: upon request
Email: remove the 'covid' string [email protected]
Sick of passing technicals and tech interviewing. Bored. Talk to me to get
some work done.
------
luizfzs
Location: Toronto, ON, CA
Remote: Not necessarily, but preferable
Willing to relocate: No.
Technologies: Java, Spring Boot, Python, Docker, SQL DBs, MongoDB.
Resume: Please, request via email
Email: luizfzsaggioro [at] gmail
About 2 years of experience with backend development in Java, designing REST
API, and some knowledge of Docker. I worked as an Android developer before
making the shift. Pythonista at home. Willing to learn other languages if
necessary.
------
luord
Location: Colombia Remote: Yes (preferred) Willing to relocate: Depends on the
project and country. Technologies:
\- Python (Django, Flask, SQLAlchemy, Celery).
\- JavaScript (Vue, React, Node, Typescript).
\- Operations: Docker(-compose), Ansible, GCP, Gitlab-CI.
\- Other: PostgreSQL, Bash.
Resume/CV: [https://luord.com/pages/resume](https://luord.com/pages/resume)
Email: [email protected]
------
cascada
Location: SE Asia
Remote: Yes
Willing to relocate: maybe
Résumé/CV: [https://gildedhonour.co](https://gildedhonour.co)
Technologies: various, will depend on a task
Email: alex @ serendipia.email
======
I'm Alex. I'll solve your problem in building custom software for you. The
areas I mostly work with are:
* e-commerce
* security
* machine learning
* marketing
* web
------
davisonio
Location: London, UK
Remote: Yes
Willing to relocate: Yes, internationally also
Technologies: semi-technical python non-technical: growth, SEO, marketing, devops, worked in entrepreneurship
Résumé/CV: https://linkedin.com/in/davisonio
Email: [email protected]
------
skadamat
Location: Boston, MA
Remote: Ok (experienced working remotely, last 5 years)
Willing to relocate: No (Boston or remote only)
Technologies: Python, SQL, TensorFlow, JavasScript (D3, React), PyData Stack
(sklearn, pandas, matplotlib)
Resume:
[https://www.linkedin.com/in/srinivasakadamati/](https://www.linkedin.com/in/srinivasakadamati/)
Email: [email protected]
------
shred45
Location: Chicago, IL
Remote: Preferable
Willing to relocate: Yes
Technologies:
\- Python (10 years)
\- Rust (3 years)
\- Application architecture and security (5 years)
\- Project / developer management (3 years)
\- Data Engineering (Python, Hadoop, Spark (Scala), Kafka, Postgres)
\- Web Development (Rails, Flask, HTML, CSS, React)
\- ML (training and validation, DNN / RNN / CNN, GLM, Random Forest, Bayesian
Optimization)
\- DevOps (Docker, Kubernetes, AWS, Google Cloud, Terraform, CI / CD)
Resume/CV: Email me please.
Email: [email protected]
------
htunnicliff
Location: Portland, Oregon
Remote: Yes
Willing to relocate: No
Technologies: React, TypeScript, JavaScript, Vue.js, Node.js, Bash, PHP, API
development, Git, Next.js, Express, Webpack, CLI development.
Résumé/CV:
[https://www.linkedin.com/in/huntertunnicliff/](https://www.linkedin.com/in/huntertunnicliff/)
Email: hello [at] huntertunnicliff [dot] com
------
arcadeparade
Location: Europe Remote: Yes. Willing to relocate: No
Technologies: Some Java a few years ago I have a certificate in computer
programming through Java. I have an honours degree in economics. I have no
work experience in CS but I'm interested in a part time job where I can learn
new things. The area doesnt matter as long as its computer science related.
------
jiberwarrior
Graduate Machine Learning Engineer with Experience
Location: UK/Europe/Malaysia
Remote: Flexible
Willing to relocate: Yes
Technologies: RapidMiner, Weka, Tensorflow, Keras, Python, Numpy/Pandas, GRPC,
GoLang, Kubernetes, Docker, AWS
Résumé/CV: [https://www.linkedin.com/in/ethan-
ooi/](https://www.linkedin.com/in/ethan-ooi/)
Email: [email protected]
------
mattacurtis
Data-driven marketer with strong tech and analytics background.
Location: NYC / NJ
Remote: Yes
Willing to relocate: Open to it
Technologies: Marketing (FB/IG, Adwords), Analytics (Tableau, Looker, Segment,
SQL, Python/Pandas)
Résumé/CV:
[https://www.linkedin.com/in/mattacurtis/](https://www.linkedin.com/in/mattacurtis/)
Email: [email protected]
------
harrydehal
Location: San Francisco, CA, USA (Bay Area)
Remote: Yes
Willing to relocate: Yes (!)
Technologies:
• Front-end (React/Angular, Javascript, HTML/CSS)
• UX (Adobe Creative Cloud, InVision, Sketch, etc.)
Résumé/CV:
[https://www.linkedin.com/in/harrydehal](https://www.linkedin.com/in/harrydehal)
Email: [email protected]
------
shimoleejhaveri
Location: San Francisco Bay Area
Remote: No
Willing to relocate: No
Technologies:
Languages: Bash, CSS3, HTML5, JavaScript (AJAX, JSON), Python3, SQL
Frameworks/Libraries: Bootstrap, Chart.js, Flask, Jinja2, jQuery, SQLAlchemy,
Toast UI
Database Industry Tools: Command Line, Git, Github, PostgreSQL
Operating Systems: Mac OS X, Linux (Ubuntu)
SysOps/DevOps: AWS, Nginx, Vagrant/ VirtualBox
Exposure: Babel, D3, React, RegEx
Resume/CV: www.linkedin.com/in/shimoleejhaveri
Email: [email protected]
------
tomlagier
I'm a seasoned freelance full-stack engineer looking for short-term work
during the COVID crisis.
Location: San Luis Obispo
Remote: Only remote, please
Willing to relocate: No
Technologies: Javascript, React, Redux, Node.js, WebGL, WebAssembly, Java,
Rust, C++
Résumé: [https://linkedin.com/in/tomlagier](https://linkedin.com/in/tomlagier)
Email: lagierta+hn at gmail dot com
------
smosab
Location: Denver, CO
Remote: Yes
Willing to relocate: No
Technologies: SQL, SSMS, Oracle, Telerik reporting, Ruby, Jira, Regex, Data conversion and migration, software implementations
Résumé/CV: https://www.linkedin.com/in/mosabsasi/
Email: [email protected]
------
JimLebeau
Location: St Louis, USA
Remote: Yes
Willing to relocate: To Europe
Technologies: C, Postgresql, Linux, Apache2, HTML, CSS, JavaScript
Résumé/CV:distributed-processing.com
Email:[email protected]
I am a generalist, and prefer to use vi as my IDE. I try to keep things
simple, and write easy to maintain code.
------
spacekrook
Location: Corona, California
Remote: Preferred
Willing to relocate: Willing to discuss
technologies: Python, Selenium, Pandas.
Resume/CV: [https://www.linkedin.com/in/joel-
korcsmaros](https://www.linkedin.com/in/joel-korcsmaros) email:
joel.korcsmaros [at] proton mail [dot] com
Looking for a junior role in python development. Let's chat!
~~~
spacekrook
github: [https://github.com/lossness](https://github.com/lossness)
------
bkcreate
Location: Bay Area, CA
Remote: Yes
Willing to relocate: Yes, anywhere in US/EU
Technologies: Java, Python
Resume: Can send on request
Email: khaggerty1 at crimson.ua.edu
I am a recent graduate with a degree in Math working on completing an
Associate's Degree in Computer Science online. My math studies focused on
areas around machine learning, but I am open to any opportunities.
Particularly interested in moving to Chicago/NYC.
------
Vk4264
Location: Hyderabad, India Remote: yes Willing to relocate: yes Technologies:
Office administration/Human Resources/Project Management. Résumé/CV:
[http://linkedin.com/in/vk-1b9b27146](http://linkedin.com/in/vk-1b9b27146)
Email: [email protected]
------
ryanmjacobs
Location: Los Angeles / San Jose
Remote: Yes
Willing to relocate: Yes
Technologies: C, Node.js, Anything *nix-related, BASH, R, SQL
Résumé/CV: [https://notryan.com/resume](https://notryan.com/resume)
Email: [email protected]
Previous internship in insurance / risk analysis. Last summer, ran an FPGA
Kickstarter selling $25k of product (React.js Cloud IDE + USB firwmare in C).
------
nathangross
Location: Cincinnati, Ohio, USA
Remote: Yes
Willing to relocate: No
Technologies: UX UI Product Designer, Front-end (web - HTML/CSS/SASS), Figma,
Sketch, 15+ years experience, creative director, designed successful apps for
iOS and Android - please see portfolio for examples
Résumé/CV: [http://nathangross.me](http://nathangross.me)
Email: [email protected]
------
shrike
Location: Seattle, WA
Remote: Yes
Willing to relocate: Yes
Technologies: IaaS, SaaS, PaaS Product Management and Engineering leadership.
Résumé/CV: [https://gestas.net/](https://gestas.net/),
[https://gestas.net/Craig%20Carl%20CV.pdf](https://gestas.net/Craig%20Carl%20CV.pdf)
Email: [email protected]
------
durotolaiyanu
Location: Lagos, Nigeria
Remote: Yes
Willing to relocate: Yes
Technologies: NodeJs, ReactJs, React Native, Coffeescript, Angular, Docker,
ExpressJs.
Résumé/CV:
[https://www.dropbox.com/s/t6xyj62rn5x0dq5/Iyanu%20Tomiwas%20...](https://www.dropbox.com/s/t6xyj62rn5x0dq5/Iyanu%20Tomiwas%20Resume%20NG.pdf?dl=0)
Email: durotolaiyanu@gmail
------
amankumar94
Location: United States (any)
Remote: YES
Willing to relocate: YES
Technologies: Python, SQL, Tableau, Powe BI, Machine Learning, Data Visualization, Business Analytics
Résumé/CV: https://www.dropbox.com/s/uu0vcxw6yy8f895/AmanKumarResume.pdf?dl=0
Email: [email protected]
------
sslnx
Location: Moscow, Russia
Remote: Yes
Willing to relocate: Yes
Technologies: mainly Python, JavaScript; occasionally Java (Android), PHP
(Wordpress), Go, C (Linux kernel modules, Linux tun/tap)
Résumé/CV: 8 years of constant full stack development. Here is my GitHub:
[https://github.com/soslan](https://github.com/soslan)
Email: [email protected]
------
chrismarlow9
Location: Bay area
Remote: yes (w/ experience)
Willing to relocate: no
Technologies: AWS, Terraform, Docker, Salt, Ansible...(see LinkedIn)
Resume: [https://www.linkedin.com/mwlite/in/christopher-
marlow-376611...](https://www.linkedin.com/mwlite/in/christopher-
marlow-37661177) .contact for full resume.
Email: [email protected]
------
stevekemp
Location: Helsinki, Finland.
Remote: Yes
Willing to relocate: No
Technologies: Devops Engineer with a strong background in coding; I can glue
systems together, automate deployments, manage infrastructure, etc.
Things I enjoy include Puppet, Ansible, Terraform, Vault, AWS, GCP, Perl,
Golang, C, C++, and developing integrations between new systems and legacy
hosts.
Resume/CV: available upon request
Email: steve[at]steve.fi
------
netmask
Location: Colima, mexico
Remote: Yes
Willing to relocate: Yes, pref netherlands
Technologies: Ruby on Rails, React, Postgres, Java and some really
enthusiastic level of Elixir
Résumé/CV:[https://www.linkedin.com/in/jonathangaray/locale=en_US](https://www.linkedin.com/in/jonathangaray/locale=en_US)
Email: jonathan at garay.mx
------
leonliang
Location: Chicago, IL
Remote: NO
Willing to relocate: YES
Technologies: Java, Python, Scala, React with Redux
Résumé/CV: https://bit.ly/2VHf4XN
Email: lsc at purdue.edu
CS grad from Purdue Univ. with multiple internship
experiences open to all kinds of opportunities
------
charliefoxtwo
Location: SF Bay Area Remote: Preferred Willing to relocate: Yes Technologies:
C#, PostgreSQL, Elasticsearch, Docker Résumé/CV:
[https://www.linkedin.com/in/reynolds-
tyler](https://www.linkedin.com/in/reynolds-tyler) Email: me(at)reynolds.tj
------
pgt
Been solving business problems with software for 15 years. Startup veteran.
Location: Cape Town, South Africa
Remote: Yes
Willing to relocate: Yes
Technologies: Clojure, ClojureScript, Datomic, Rust.
Résumé/CV: http://petrustheron.com/cv/
Email: [email protected]
------
tedmid
Location: Vancouver, BC, Canada
Remote: Yes
Willing to relocate: No
Technologies: C, C++, Rust, Python, NodeJs, Qt, AWS (S3, EC2, Lambda), Linux,
general embedded work
Résumé/CV: [https://www.linkedin.com/in/ted-
middleton-57a2781/](https://www.linkedin.com/in/ted-middleton-57a2781/)
Email: See my linkedin page for my email
------
dmesq
Location: New York City
Remote: Yes
Willing to relocate: Yes
Technologies: Python (pandas, scikit, seaborn, etc), C++, PyTorch, SQL, Spark,
Hadoop, CUDA, Flask, MongoDB, Docker
Resume: [https://drive.google.com/open?id=1h3pHwNI-
iFdaG142v8-8fKtYD7...](https://drive.google.com/open?id=1h3pHwNI-
iFdaG142v8-8fKtYD7iZe4Tj)
Email: [email protected]
------
greeniowork_x
Location: South East Asia Remote: Yes Willing to relocate: Yes Technologies:
JS (React, comfortable with Vue), Typescript, Java, HTML/CSS Résumé/CV:
(email) Email: [email protected]
Looking for freelance projects as well.
2 years of work experience, primarily frontend work. Also fairly fluent in
Flutter/Dart.
------
abdullahkhalids
Physicist, especially quantum computing scientist. Looking for industry jobs.
Location: Karachi, Pakistan
Remote: Yes
Willing to relocate: Yes
Technologies: Python, Mathematica, Matlab
Résumé/CV: https://abdullahkhalid.com/files/cv.pdf
Email: [email protected]
------
damm
Location: Seattle, Wa, USA Remote: Yes Willing To Relocate: No Technologies:
Chef, Jenkins, Kubernetes, Docker, Ruby, ELK Stack, Python Resume/CV:
[https://likens.us/Scott%20Likens.pdf](https://likens.us/Scott%20Likens.pdf)
Email: [email protected]
------
yami
Location: Strasbourg (France)
Remote: Yes, only remote
Willing to relocate: Nope
Technologies: Java / Spring Boot / Kafka / Cassandra / Postgres
Résumé/CV: https://www.linkedin.com/in/michelantoine/
Email: michel.br.antoine at pm dot me
------
hhanif95
Location: San Francisco, Bay Area Remote: Yes Willing to relocate: No
Technologies: Java, JavaScript Résumé/CV:
[https://www.linkedin.com/in/harishanif/](https://www.linkedin.com/in/harishanif/)
Email: [email protected]
------
DreamScatter
Location: North Carolina
Remote: yes
Willing to relocate: not in a pandemic
Technologies: Julia, Fortran, Matlab, geometric algebra, finite element,
numerical analysis, computational fluid dynamics, electromagnetics, and more
Résumé/CV: [https://github.com/chakravala](https://github.com/chakravala)
Email: crucialflow.com + michaelreed
------
78star78
Location: Victoria, BC Canada
Remote: Yes
Willing to relocate: Yes
Technologies: Python, Java, AWS, Docker, Selenium.
Resume:
[http://jerushachua.github.io/assets/resume.pdf](http://jerushachua.github.io/assets/resume.pdf)
Email: find on [http://jerushachua.com](http://jerushachua.com)
------
delduca
Location: Curitiba, Brazil
Remote: Yes
Willing to relocate: No
Technologies: C, C++, Python, Flask, Django, Docker, SQL, NoSQL, React, Redis, GraphQL, Serverless, RESTful, Linux and bash.
Résumé/CV: https://storage.skhaz.io/resume.pdf
Email: [email protected]
------
aamustapha
Location: Kano, Nigeria
Remote: Yes (Preferred)
Willing to relocate: Yes (Germany)
Technologies: Python, JavaScript, Android, Node, SQL
Résumé/CV: www.amustapha.com
Email: [email protected]
I enjoy building fast, lightweight and flexible web applications that scale.
------
throw82589933
Looking to spent more time writing Clojure, preferably in infrastructure field
Location: Hamburg, Germany
Remote: Yes
Willing to relocate: Yes, within Germany
Technologies: started with rails web stack, moved on to python for infra,
lately managing/automating and scaling Mesos and Kubernetes, which involved
some Go, in total: 8 years web dev, 7 years SRE
Email: [email protected]
------
eldacila
Location: Costa Rica
Remote: Yes - ideally
Willing to relocate: no
Technologies: Python, Linux, Git, Bash Scripting, Embedded C/C++, Qt, SQL,
Docker
Résumé/CV: bit.ly/dcordero-resume
Email: [email protected]
\---- I have professional experience with C/C++ with Qt for Desktop, but I
have done Android (Java) and Web development (HTML|Angular|js), and am willing
to learn other technologies
~~~
petargyurov
I apologise for being off-topic, but what's it like being a dev in Costa Rica?
I have considered packing up and moving my life there but last time I checked
the average salaries, I was a bit put off.
~~~
ugh123
>I checked the average salaries, I was a bit put off.
well sure, but cost of living is a huge benefit. plus if you can work remotely
for a US company at US salaries then you're living the high life...
------
ringus_dingus
Location: Sunnyvale, CA | San Francisco Bay Area
Remote: Open to it
Willing to relocate: Yes
Technologies: Python, C++, SQL, AWS, Linux, Docker, JavaScript
Résumé/CV:
[https://drive.google.com/open?id=1z_gJaisyRr_AU5luv1pfSVxuda...](https://drive.google.com/open?id=1z_gJaisyRr_AU5luv1pfSVxudaUW_CG7)
Email: [email protected]
------
pvillano
Location: Notre Dame, Indiana
Remote: Preferred
Willing to relocate: Yes
Technologies: Python, Django, NGINX, C, C++, Java, GLSL, Bash, OpenSCAD, OpenGL, SQL, Blender, PHP, JavaScript, Android
Résumé/CV: saej.in/Peter_Villano_resume.pdf
Email: [email protected]
------
phasnox
Full Stack Developer.
Location: Guayaquil, Ecuador (GMT-5)
Remote: Yes
Willing to relocate: Yes
Technologies: Elixir, React, Rails, Django, Docker, Elm
Résumé/CV: https://www.linkedin.com/in/guillermo-castillo-5931a954/
Email: [email protected]
------
kladskull666
Location: Toronto, ON Remote: Ok (experienced working remotely, last 8 years)
Willing to relocate: No (Toronto or remote only)
Technologies: DevOps, C/C++, Linux, PHP, Bash
LinkedIn:
[https://www.linkedin.com/in/mikecurry/](https://www.linkedin.com/in/mikecurry/)
Email: [email protected]
------
n0w
Location: Melbourne, Australia
Remote: Yes
Willing to relocate: No
Technologies: JavaScript, TypeScript, Vue.js, Svelte, GraphQL, Hasura,
Postgres, Go, Node, Docker, Kubernetes, GitLab CI, Linux
Résumé/CV:
[https://nowylie.com/nicholas_wylie_resume.pdf](https://nowylie.com/nicholas_wylie_resume.pdf)
Email: [email protected]
------
colthn
Hello, I'm a CS Major at The University of Texas at Austin, graduating
December 2020. Currently seeking a Summer or Fall internship.
Location: Austin, Texas
Remote: Yes
Willing to relocate: Yes
Technologies: Javascript, Node, AWS, SQL, Docker, C++, Bash
Portfolio: [https://cjudice.com](https://cjudice.com)
Email: [email protected] minus the abc
------
mikst
Location: will share in a conversation.
Remote: yes.
Willing to relocate: yes.
Technologies: Baremetal servers and switches, Linux ops, Datacenter storage, Python, Node.js, git, AWS, GCE, apache, nginx, haproxy.
CV: will share in a conversation.
Email: [email protected]
------
DJBunnies
Location: Boston, MA
Remote: Yes
Willing to relocate: Maybe
Technologies: Expert PHP (Zend certified engineer) and MySQL, pretty good JS, and excellent AWS experience.
Résumé/CV: https://www.linkedin.com/in/alexrockwell
Email: [email protected]
------
aberdysh
Location: Toronto, ON, Canada
Remote: Yes
Willing to relocate: Yes
Technologies: PyTorch, Julia, Python
Résumé/CV:
[https://www.linkedin.com/in/aberdysh](https://www.linkedin.com/in/aberdysh)
Email: [email protected]
Currently working as a Deep Learning Engineer. Open to interesting projects
and opportunities
------
victor871129
Location: San Francisco, CA
Willing to work remote: YES
Relocation: YES
Technologies: React/Redux,Express Node.js, MongoDB, SQL Server, Formik, HTML,
CSS, SASS/SCSS, JavaScript, ES6/7/8, jQuery, Bootstrap. Unity Engine
technologies.
Resume: No agencies, full-time economic salary. Ask it at
[email protected]
Email: [email protected]
------
ignaloidas
Location: Lithuania
Remote: Yes
Willing to relocate: No
Technologies:
- Deep knowledge of Python
- Good knowledge of Django, Flask
- Basics on HTML, CSS, JS
Resume: Put shortly - I worked in a startup for a year during 11th class. I'm
finishing school this year and looking for a job starting summer
Email [email protected]
------
aaronmill1
Location: Minneapolis, MN, USA
Remote: Yes
Willing to relocate: No
Technologies: Backend JVM (Java/Groovy/Kotlin), DevOps
Résumé/CV: https://www.linkedin.com/in/aaron-miller-b74911113/
Email: aaron at aaron hyphen miller dot net
------
happppy
Location: Pakistan
Remote: Yes
Willing to relocate: Yes
Technologies: JavaScript, React, Vuejs, Nodejs, Nextjs, Angularjs, Php,
Laravel, SQL, Redis, Git Socket.io
Résumé/CV: [https://www.linkedin.com/in/ahmad-
raza-/](https://www.linkedin.com/in/ahmad-raza-/)
Email: ahmdrzalifa[at]gmail[dot]com
------
jjjbokma
Location: The Netherlands
Remote: yes, only
Willing to relocate: no
Technologies: Perl, MySQL, Python, JavaScript, CSS/HTML
Résumé/CV: [http://castleamber.com/documents/perl-programmer-john-
bokma-...](http://castleamber.com/documents/perl-programmer-john-bokma-
resume.pdf)
Email: [email protected]
------
spmonish
Location: San Francisco, CA
Remote: Yes
Willing to relocate: No
Technologies: C++, Python, Javascript
Résumé/CV:
[https://drive.google.com/open?id=189hvAd8WMmwf40od0ZDFRvzKUi...](https://drive.google.com/open?id=189hvAd8WMmwf40od0ZDFRvzKUiNxNR8C)
Email: [email protected]
------
avempaty
Location: San Francisco Bay Area, CA
Remote: Yes
Willing to relocate: Open to it
Technologies: Java (Spring), Javascript, Ruby, ReactJS, AWS, NoSQL
Resume: [https://www.linkedin.com/in/aneesh-
vempaty-4003b892/](https://www.linkedin.com/in/aneesh-vempaty-4003b892/)
email: [email protected]
------
nikivi
Location: London
Remote: Yes
Willing to relocate: Yes
Technologies: Go • React • TypeScript • Python • Postgres
CV: [https://nikitavoloboev.xyz/cv.pdf](https://nikitavoloboev.xyz/cv.pdf)
GitHub: [https://github.com/nikitavoloboev](https://github.com/nikitavoloboev)
Email: In CV
------
imaffett
Location: Lancaster, PA
Remote: Yes
Willing to Relocate: No
Technologies: Full stack development across broad ranges of technologies.
Spent years doing mobile html5 (tools got acquired by Intel) and the past 4
years in banking/fintech. Experience as an architect, team lead and special
project support.
Resume: available on request
email: ian.maffett at gmail.com
------
tareqak
Location: Toronto, ON, Canada & California, USA
Remote: Yes
Willing to relocate: Yes (Canadian citizen - would require the appropriate
visa sponsorship for other countries)
Technologies: Java, Python, TypeScript
Résumé/CV: [https://www.tareqak.com](https://www.tareqak.com)
Email: tareqakhandaker AT gmail DOT COM
------
jorgechavz
Location: Sonora, Mexico Remote: Remote Willing to relocate: Yes, prefer
Canada Resume:
[https://www.linkedin.com/in/jorgechavz/](https://www.linkedin.com/in/jorgechavz/)
Email: [email protected]
------
kylklatt
Location: Gilbert Arizona
Remote:yes
Willing to relocate:yes
Technologies: C, win32, opengl, +
Résumé/CV: on request
Email: [email protected]
looking for any kind of jr position, ideally in C, but I'm more than capable
of learning whatever.
------
nluux20
Location: Boston, MA Remote: Yes
Willing to relocate: Yes
Resume: linkedin.com/in/nadialindai
Email: [email protected]
Project: [https://github.com/nadialindai](https://github.com/nadialindai)
Working on my post-bacc in computer science! I am available for iOS
internships- remote or abroad!
------
timchebunin2
Location: Minsk, Belarus
Remote: Yes
Willing to relocate: Maybe
Technologies: UX/UI design, product design, UX copywriting, Figma/Sketch/Adobe
CC, HTML/CSS
Résumé/CV: [https://timchebunin.com/](https://timchebunin.com/)
Email: [email protected]
------
berliner
Location: Berlin, Germany
Remote: Yes
Willing to relocate: No
Technologies: Go, Erlang, Javascript, Ruby, Linux, AWS, Postgres,
Elasticsearch
Résumé/CV:
[https://www.linkedin.com/in/wasifmalik/](https://www.linkedin.com/in/wasifmalik/)
Email: wmalik [@] (gmail) ((.)) ((com))
------
nkotlyarov
Location: Russia, Moscow
Remote: Yes
Willing to relocate: Yes
Technologies: Python, Postgres, Tableau
Resume:
[https://www.dropbox.com/s/vfng12mgom81iat/Nikita%27s%20Resum...](https://www.dropbox.com/s/vfng12mgom81iat/Nikita%27s%20Resume.pdf)
Email: kotlyarov.nikita at gmail.com
------
mileycyrusXOXO
Location: Northern Colorado
Remote: Yes
Willing to relocate: No
Technologies: 8+ years full stack development. Have a wide range of experience
from embedded to virtual reality. JS, Java.
Résumé/CV: [https://jordanmajd.com/cv.html](https://jordanmajd.com/cv.html)
Email: me at jordanmajd dot com
------
aquir
Location: Manchesater, United Kingdom
Remote: Yes
Willing to relocate: Yes
Technologies: Navision/Dynamics NAV/Business Central ERP, SQL Server, PowerBI
Resume/CV: www.linkedin.com/in/martonn
Email: martonn [at] pm.me
10+ years in ERP and business integration Development, Consultancy, Training,
Implementation - you name it! 20+ years it IT
------
radarsat1
Location: Utrecht, the Netherlands
Remote: Yes
Willing to relocate: No
Technologies: C++, C, Python, SciPy/TensorFlow; expert in signal processing,
audio, control, robotics, machine learning; looking for 3 or 6-month freelance
projects.
Resume/CV: sinclairs.gitlab.io/cv/sinclair_cv2020.pdf
Email: [email protected]
------
vic_nyc
Location: Mountain View, CA
Remote: Yes
Willing to relocate: No
Technologies: Ruby, Rails, Javascript, Clojure, Node.JS, PostgreSql, React.JS
Résumé/CV: linkedin.com/in/victorolteanu
Email:victor[@] innergysoftware.com
------
buzz27
Location: Toronto
Remote: Yes
Willing to relocate: No
Technologies: Rails, React, React Native, Vue, CSS, PHP, AWS, PostgreSQL,
Javascript, Laravel, Docker, HTML5, MySQL, *nix
Email: [email protected]
I'm a full stack developer interested in short or long term gigs, but we also
have a few people available, either solo or as a team.
------
rusikg
Location: Prague, Czech Republic
Remote: Yes
Willing to relocate: Yes
Technologies: linux, AWS, kubernetes, go, python, ansible
CV:
[https://drive.google.com/open?id=1q1yXq4jY4lnDVT2x-HAlk2z-W1...](https://drive.google.com/open?id=1q1yXq4jY4lnDVT2x-HAlk2z-W1ii470J)
Email: [email protected]
------
tcvt
Location: Oregon
Remote: Yes if possible
Willing to relocate: Yes
Technologies: Scala, Android, Kotlin, Java, Dynamo DB, SQS, EC2
Résumé/CV:
[https://toddcooke.github.io/Todd_Cooke_Resume.pdf](https://toddcooke.github.io/Todd_Cooke_Resume.pdf)
Email: [email protected]
------
timgluz
Location: Frankfurt am Main
Remote: Yes
Willing to relocate: cant
Technologies: Rust, Ruby, Javascript, Julia, Python, Clojure, Kotlin, Java
Résumé/CV: https://www.sulg.dev/
Email: [email protected]
------
cgallopo
Location: San Diego, CA Remote: Yes, local as well and contracted jobs
Willing to relocate: Willing to have the conversation.
Technologies: Ruby, Rails, React, React Router, Javascript, AWS, Postgresql,
MySQL, Heroku, Datica, Linux, HTML/CSS
Resume: Please request via email
Email: [email protected]
------
timmalstead
Location: Los Angeles, CA USA
Remote: Yes
Willing to relocate: Yes
Technologies: JavaScript, Node.JS, React, TypeScript, GraphQL
Résumé/CV: bit.ly/timmrez
Email: [email protected]
Portfolio: timmalstead.com
------
conta
Location: Czechia
Remote: Yes
Willing to relocate: Yes
Technologies: Technical Product Manager (NodeJS, ElectronJS, Ruby on Rails, Ruby)
Résumé/CV: https://hovancik.net/cv
Email: jan (at) hovancik.net
------
HeinZawHtet
Location: Yangon, Myanmar Remote: Yes
Willing to relocate: Yes
Technologies: React, React Native
Resume/CV:
[https://iamhein.com/hein%20-%20resume%20-%20updated.pdf](https://iamhein.com/hein%20-%20resume%20-%20updated.pdf)
Email: hello at iamhein.com
------
jcmurray2
Location: Colorado, US
Remote: Yes
Willing to Relocate: no
Frontend: Vue.js, JAMStack, Laravel
Backend: PHP, Lumen, Laravel, NodeJS, Serverless, Headless CMS, WordPress,
Drupal, etc. etc.
DevOps: Terraform, CloudFormation, Serverless, Kubernetes, GitOps, AWS, CI/CD
on multiple platforms, Docker, etc.
Resume: Ask and you shall receive
Email: [email protected]
------
prithsr
Location: NC, USA
Remote: No
Willing to relocate: Yes
Technologies: WordPress(?), HTML, CSS, basics in R, Python. Actively taking
web development courses as well.
Resume/CV: [https://rakhyani.com/resume/](https://rakhyani.com/resume/)
Email: [email protected]
------
eden_hazard
Location: New York Remote: Yes
Willing to relocate: No
Resume:
[https://www.linkedin.com/in/arifh173/](https://www.linkedin.com/in/arifh173/)
Email: [email protected]
\------------------------------------------------
I'm a QA engineer.
------
lhtr
Location: Paris, France
Remote: Yes
Willing to relocate: No
Technologies: C++, Go, Java; test automation
Résumé/CV: Upon request
Email: [email protected] (temporary email address for privacy reasons)
------
t312227
devops-/cloud engineer, full-stack developer:
* location: innsbruck, austria, eu
* remote: heavily preferred
* willing to relocate: no, but okay with travel
technologies:
# containers and kubernetes
# cloud platforms (mainly AWS, GCP)
# linux based infrastructure
# ansible, helm, ...
# scripting in python, javascript, bash
# webapplications with python-django
# common sql & nosql databases
# ci/cd pipelines with jenkins
# prometheus, grafana, elk
# agile processes - mainly scrum (dev) and kanban (ops)
* resume: send me an e-mail, please
* e-mail: [email protected]
* web: [https://schuetz.in](https://schuetz.in)
------
markoehler360
Location: Copenhagen, Denmark
Remote: yes
Willing to relocate: no
Technologies: HTML, CSS, JS, React.js, React Native Vue, Node.js, Express.js
Résumé/CV: on request
Email: markusgosling at gmail.com
Highly motivated Bootcamp-graduate looking for jobs as Junior Web Developer.
Most excited about React.js and Node.js/Express.js
~~~
madsobel
I wrote you an email
------
daro7
Location: Poland
Remote: Yes
Willing to relocate: No
Technologies: Python, Django, Django REST Framework, Javascript
Linkedin:
[https://www.linkedin.com/in/dchoruzy/](https://www.linkedin.com/in/dchoruzy/)
Email: [email protected]
------
hndl
Role: Product Manager (5+ years of experience including a YC company)
Location: Austin, TX.
Remote: Yes (preferred).
Email: [email protected]
Technologies: JIRA, Product Board, Pendo, Google Analytics, SQL
------
boinger
Location: SF Bay Area
Remote: Yes
Willing to relocate: Maybe
Technologies: Leadership for SRE/TechOps/DevOps
Résumé/CV: http://jeffvier.com/resume.html
Email: [email protected]
------
nicbarth
Location: Edmonton, Alberta, Canada
Remote: Yes
Willing to relocate: No
Technologies: Rails, Django, Laravel, React, Redux, Bootstrap
Résumé/CV: http://nickbarth.ca
Email: [email protected]
------
ludwigvan
Location: Istanbul
Remote: Yes
Willing to relocate: No
Tech: React, Django, node.js, JavaScript, TypeScript, Python, Clojure, C#,
Java, AWS/Azure, Postgresql, MATLAB...
CV: [https://bit.ly/2w5XceN](https://bit.ly/2w5XceN)
Email: ustun at ustunozgur.com
------
tomekw
Location: Warsaw, Poland
Remote: Yes
Willing to relocate: No
Technologies: Ruby, Ruby on Rails, Clojure, React, Ada
Résumé/CV:
[https://www.linkedin.com/in/tomekwcom/](https://www.linkedin.com/in/tomekwcom/)
Email: [email protected]
------
HemantPawar
Location: India
Remote: Yes
Willing to relocate: Depends
Technologies: Firefox & Chrome extension developer, Vanilla JS
Résumé/CV:
[https://www.hemantpawar.com/Hemant.CV.pdf](https://www.hemantpawar.com/Hemant.CV.pdf)
Email: [email protected]
------
mr_splinter
Location: Latvia/Riga (Europe)
Remote: Yes (willing to travel for business purposes)
Willing to relocate: No
Technologies: Python/Django, PostgreSQL/MySQL, React, AngularJS. I mostly
prefer backend but can do full-stack too.
Résumé/CV: Will provide through email
Email: karlisba[at]gmail.com
------
TrueCarry
Location: Russia Remote: Yes Willing to relocate: No Technologies: Go,
Node.js, Vue, React, Docker, K8S, PGSQL, grpc Email: truecarry at gmail.com
I'm mainly developing backend on Go. Sometimes do some frontend stuff, mainly
in Vue.
------
Tejasree_v
iOS Developer with 2 years of experience.
Location: San Francisco, CA
Remote: No
Willing to relocate: Yes, anywhere in the US.
Technologies: Swift, Objective-C, iOS
Résumé/CV:
[https://drive.google.com/file/d/1HjIolHvtAVw7Dg2dCfGuUtTkVtB...](https://drive.google.com/file/d/1HjIolHvtAVw7Dg2dCfGuUtTkVtBrLIpW/view)
Email: [email protected]
GitHub: [http://github.com/txv428/](http://github.com/txv428/)
LinkedIn:
[https://www.linkedin.com/in/tejvanga/](https://www.linkedin.com/in/tejvanga/)
------
king__adonai
Location: Russia, Saint Petersburg
Remote: Both
Willing to relocate: Yes
Technologies: javascript, react, redux, html, css, express, mongodb
Résumé/CV: donwload it here [https://heyalex.net/](https://heyalex.net/)
Email: [email protected]
------
waterbyte
Software Engineer
Location: India
Remote: Yes
Willing to relocate: No
Technologies: Python, AWS, SQL, Kafka, Java(Prior)
Resume/CV:
[https://www.linkedin.com/in/sagarmehar/](https://www.linkedin.com/in/sagarmehar/)
Email: [email protected]
------
Izoch
Location: Bosnia
Remote: Yes (Global only)
Willing to relocate: No
Technologies: C#, C, Python, Unity
Résumé/CV:
[https://izoch.github.io/info/cv.html](https://izoch.github.io/info/cv.html)
Email: [email protected]
------
TeckHockNg
Location: Toronto, Canada
Remote: yes
Willing to relocate: yes
Technologies: Python, HTML&CSS, JavaScript, Photoshop, Wordpress, Flask,
Tensorflow, Tableau, Node.js, SQL
Email: [email protected]
There are links in my resume that you can click on to see the websites that
I've built.
------
dbancajas
Location: Austin, TX Remote: Local or Remote is okay. Willing to relocate: No
Skills: 5+ years experience in Analog Mixed-Signal Circuit Design, Serdes &
Physical Design Email: <HN username>@gmail
------
enykeev
Location: Tomsk, Russia
Remote: Yes
Willing to relocate: Eventually, not right now
Technologies: Python, JS, Fullstack, Devops, Automation, UI/UX
Résumé/CV: [https://hire.mech.sh/](https://hire.mech.sh/)
Email: [email protected]
------
tzekid
Location: Frankfurt, Germany
Remote: Yes
Willing to relocate: Maybe
Technologies: Python, JavaScript, C#, C++
Résumé/CV:
[https://ilieploscaru.xyz/resume.pdf](https://ilieploscaru.xyz/resume.pdf)
Email: [email protected]
------
Hello71
Location: Toronto, Canada
Remote: Yes
Willing to relocate: Yes
Technologies: C, shell, Linux, networking
Résumé/CV: https://alxu.ca/resume.pdf
Email: see resume
------
renoir42
Seeking contract work C++/Pytorch, VR, CV, GPU, Fintech, Julia Scala Haskell
etc. Once speaker at CUFP Location: Japan TZ Remote: YES Willing to relocate:
No email: renoir42 @ yahoo.com
------
kvgr
Location:Prague/Europe
Remote: Yes
Willing to relocate: Yes
Technologies: Android, Java, Kotlin
Email: [email protected]
I am an android engineer, with 6 years of experience. I am looking for
shortterm and longterm remote work mostly. I can help you fix your app, or
build new one.
------
baileyjohnson
Location: Myrtle Beach, SC
Remote: Not Preferred
Willing to Relocate: Yes
Technologies: Python, Flask, Node/Vanilla JS, React, MySQL
Résumé/CV: [https://baileyjohnson.io](https://baileyjohnson.io)
Email: [email protected]
------
idearoots
Location: Poland
Remote: yes (only)
Willing to relocate: no
Technologies: Android & iOS - Kotlin, Java, Dart (Flutter), Swift
Résumé/CV: [https://androidgecko.com/](https://androidgecko.com/)
Email: see link above
------
hexagonsun
Location: Wisconsin
Remote: Yes
Willing to relocate: No
Technologies: Python/Django/Web Development
Résumé/CV: [https://jalstad.com/resume/](https://jalstad.com/resume/)
Email: jake at jalstad.com
------
tonmoy
Location: Dallas, TX USA
Remote: Willing
Willing to relocate: Yes
Technologies: RTL Design, Static Timing Analysis, Physical Design,
SystemVerilog, Python, C++, Ruby, bash, git, RISC-V
Resume: linkedin.com/in/tonmoy-roy Email: [email protected]
------
b42
Location: Czech Republic
Remote: Yes
Willing to relocate: No
Technologies: Python, C, C++, Golang, Rust, Haskell, NixOS
Résumé/CV: Via email please.
Email: [email protected]
Get in touch if you need help with reliable software running on Linux - server
& embedded platforms.
------
zadkey
Location: Dallas, Tx
Remote: Preferred
Willing to relocate: unlikely
Technologies: C#, JS, SQL 6 years, asp.net 5 years, Azure 3 years, F# 2 years,
react, entity framework 7 months
Resume: email me
Email: [email protected]
would like to do more react and work with nextjs
------
nabucodonosor
Location: NYC/NJ in US
Remote: Yes
Willing to relocate: No
Technologies: robotics (ROS, realtime communication, prototyping and design),
web backend (golang, python, nodejs, postgres)
Résumé/CV: available through email
Email: [email protected]
------
dbnoch
Im curious if anyone has had luck in this kind of thread?
------
baali
Location: India
Remote: Yes.
Willing to relocate: No.
Technologies: Currently working with Python, Home Automation, Infrastructure
monitoring.
Email: on my HN profile.
\--
I have been a jack of all trades, worked in different tech-stacks, domains as
per needed.
------
jlalfonso21
Hello I'm a Software Developer looking for serious projects to work on
Location: Matanzas, Cuba
Remote: Yes
Willing to relocate: No
Technologies: Python, PostgreSQL, Django, Odoo, Qt, C++, Docker, Git, Linux
Email: jlalfonso21 AT gmail
------
mapandey
Location: Pune India Technologies: Clojure Java Docker K8S AWS Resume:
www.linkedin.com/in/mayur-pandey-1aa0b287 Email: [email protected]
------
Silly_Spray
Location - Remote Willing to relocate - Yes Skills - Marketing Automation,
Analytics, Growth and Content Email - moirahulsingh [at] gmail
------
rossboss
location: Atlanta Remote: Yes Willing to relocate: Yes
Technologies: Javascript, TypeScript, Angular, Vue, C#, Python, SQL,
Terraform, Athena, DynamoDB, AWS Lambda.
Résumé/CV:
[https://www.linkedin.com/in/ross-p/](https://www.linkedin.com/in/ross-p/)
(email for additional info)
Email: [email protected]
looking for fun and exciting projects!
------
mdnormy
I'm looking for operations and infrastructure related position. [fulltime
only]
Location: Malaysia | Singapore
Remote: Yes
Willing to relocate: Yes
Technologies:
\- 7 years in AWS (certified architect pro)
\- 10 years in Linux
\- 3 years in DevOps
Email: [email protected]
Resume: Upon request
------
u08ywo
Location: Berlin, Germany
Remote: Yes
Willing to relocate: Within Germany
Technologies: Python, C; PyTorch, TF; AWS, Git, Linux, Docker; Blockchain,
Cryptocurrency
Résumé/CV: On request
Email: u08ywo gmail.com
------
highcenburg
Location: Manila, Philippines
Remote: Yes
Willing to relocate: Yes
Technologies: Python/Django, HTML/CSS/SASS/Bootstrap/Bulma
Résumé/CV: www.icenreyes.xyz
Email: vgreyes at pm.me
------
ramgzd
Location:Jersey City/NJ
Remote:YES
Willing to relocate:YES
Technologies:Java, SQL, Javascript, HTML5, CSS3
Résumé/CV: www.linkedin.com/in/gozdealdemir
Email:[email protected]
------
schraitle
Location: Cleveland, OH
Remote: Yes
Willing to relocate: No
Technologies: Node.js, Java, Heroku, JavaScript
Résumé/CV: www.linkedin.com/in/davidschraitle
Email: [email protected]
------
castral
Location: California
Remote: Yes
Willing to relocate: No
Technologies: Swift, Kotlin, Java (server and Android), BLE, Embedded
Prototyping
Résumé/CV:
[https://www.linkedin.com/in/ryanbrignoni/](https://www.linkedin.com/in/ryanbrignoni/)
Email: castral 01 at gmail com
I was the lead iOS engineer at JUUL working on BLE connectivity. Looking for
interesting and innovative tech, new prototype hardware, green fields, etc.
------
aproductguy
Location: Toronto
Remote: Yes
Willing to relocate: No
Technologies: Product Manager, so no useful skills
Résumé/CV: linkedin.com/in/samholako
Email: [email protected]
------
therealjumbo
Location: Wisconsin
Remote: Yes
Willing to relocate: No
Technologies: embedded linux, docker, python, c, bash
Résumé/CV: available on request
Email: [email protected]
------
prayerPlant_
Java backend developer or data engineer
Location: Amsterdam, Netherlands
Remote: No
Willing to relocate: No
Technologies: Java 8+, SQL
CV: On request
Email: [email protected]
------
asdf21
Hello all.. I am a jack-of-all-trades / IT generalist who would like to
transition into an entry / mid-level Java or Kotlin development position, or
perhaps DevOps. I don't need a ton of pay, but some patience for a few months
to learn more best practices and your companies way of doing things. Looking
to primarily deepen my Java / Kotlin skills in the next year or two. Most of
my experience thus far has been for very small shops where I had to wear a lot
of hats and didn't primarily focus on software dev, but did more project
management and web development.
Location: SF Bay Area
Remote: sure
Willing to relocate: no
Technologies: Java, Kotlin, PHP, Python, Linux Server Admin, Xen Virtualization,
IT Project Management, Bash, Vim, Javascript, Software implementation, Technical writing.
Résumé/CV: Avail upon request
Email: [email protected]
------
endorphone
Location: Toronto (well, Burlington)
Remote: Only
Technologies: Full stack, C#, C++, Swift, most web techs.
CV:
[https://dennisforbes.ca/articles/about.html](https://dennisforbes.ca/articles/about.html)
Email: [email protected]
I have my own products (iOS apps and a SAAS play) and only work on other
people's stuff part-time time to maintain diversity and sharpness in my
universe of technology, and importantly to keep engaged with other people when
otherwise I could go months without talking to anyone professionally.
If it's planning, consulting, advising, implementation, laying groundwork,
analysis, integration, data-focused, I'd love to help.
~~~
endorphone
This is no longer active, so please disregard
Thanks!
------
abinaya_remote
Hey, a friendly note to job seekers! There are few automated aggregation sites
available to curate the jobs posted in the "Who is hiring?" thread but I want
to take the aggregation one step further and wanted to provide the good
quality jobs by handpicking them. I’m going to search, screen, verify and tag
all the jobs posted in the other Who is hiring? thread. So it can save you
time, energy, and frustration – and hopefully, help you find a job faster
during this tough time!
[https://docs.google.com/spreadsheets/d/1NVzygGYTmF3g_VPAh4lX...](https://docs.google.com/spreadsheets/d/1NVzygGYTmF3g_VPAh4lXhy3eu6PvxyyUgg-
Jy_6BiII/)
\- Contains all the remote jobs posted in this Who is hiring right now? Thread
\- Each remote job is hand-curated
\- Use filters based on skill categories and country restrictions.
\- Only 100% remote jobs
Any feedback welcome here in comments
------
29athrowaway
You cannot say only US/EU, that is an EEO violation (Country of origin
discrimination).
Edit: wrong thread.
~~~
dang
Surely it's fine for the user to say where they are willing to relocate.
We detached this subthread from
[https://news.ycombinator.com/item?id=22751336](https://news.ycombinator.com/item?id=22751336).
~~~
29athrowaway
Oh, true. I thought this was the "who is hiring" thread.
~~~
dang
People do occasionally get them confused. Usually we can move a post from the
one to the other.
| {
"pile_set_name": "HackerNews"
} |
Changing the narrative on distributed teams in Silicon Valley - _nh_
https://versionone.vc/changing-the-narrative-on-distributed-teams-in-silicon-valley/
======
_nh_
"Among our Silicon Valley-based portfolio companies, not a single company past
“A” does not have a distributed team." \- how the narrative on distributed
teams is changing in SV given the war for talent and rising costs.
| {
"pile_set_name": "HackerNews"
} |
On the absurd advertisements for "Windows 7 parties" - unalone
http://log.valhallaisland.com/post/194962900
======
icey
These parties seem ripe for subversion...
"I went to a Windows 7 launch party and the host kept going on about how great
Windows 7 is. About 30 minutes in, he started showing videos of Furry porn and
his wife came in wearing a rabbit suit with the crotch cut out of it. I don't
know what MSFT is trying to tell us, but I'm a little creeped out."
| {
"pile_set_name": "HackerNews"
} |
Ask HN: What if a technological advance makes all existing cryptocoins obsolete? - ler0ix
======
cjbprime
You can't just say "What if" and then describe something plausible that has
mostly predictable consequences, as if the question's profound just for being
asked. This will probably happen! What specifically do you want to know about
the consequences?
No-one's satisfied with the protocol of any cryptocurrency right now.
Transaction rates are very low, proof of work algorithms are ridiculous, the
decentralized protocols are still incurring emergent centralization.
So there'll be new protocols, and the price of coins running on the old
protocols will presumably decrease eventually.
However, something like Bitcoin could be adapted on the fly to gain newer
protocols, which has already been happening somewhat. You just have to
persuade the majority of miners to adopt the change. In that case, the coin
could retain value rather than become obsolete.
| {
"pile_set_name": "HackerNews"
} |
Reactive web programming in Standard ML - eatonphil
https://github.com/melsman/mlkit/blob/master/js/test/rwp_ex1.sml
======
eatonphil
And the resulting HTML output:
[http://www.smlserver.org/smltojs/test/rwp_ex1.html](http://www.smlserver.org/smltojs/test/rwp_ex1.html)
| {
"pile_set_name": "HackerNews"
} |
GitHub's vanishing acceleration - mooreds
http://redmonk.com/dberkholz/2014/09/26/githubs-vanishing-acceleration/
======
stephenr
I don't see a problem here. The whole world doesn't need to be using GitHub.
| {
"pile_set_name": "HackerNews"
} |
Why Dig Inn Uses Tech So We Can Eat Like Our Grandparents - foodtechconnect
http://foodtechconnect.com/2016/03/28/how-tech-is-helping-dig-inn-pioneer-a-veggie-forward-food-future/
======
GFK_of_xmaspast
I don't know how the author's grandparents ate, but this does exist:
[http://www.lileks.com/institute/gallery/](http://www.lileks.com/institute/gallery/)
The author also writes: "Whole foods like blueberries and eggs were being
pushed off shelves by their more sophisticated cousins" before talking about
relations with local farmers, but if you want your blueberries in the
wintertime you're not liable to get it local.
I do agree that we need to improve lots and lots of things concerning food in
this country, but it's also important to remember how things actually used to
be.
| {
"pile_set_name": "HackerNews"
} |
Ask PG: Is HN Expired Link Eventual Fix Planned? - baldajan
I believe the expired link issue came from using a new lisp feature, but I'm curious if there is any plans to fix it?<p>It's a little annoying since I constantly pickup tabs that are a day old, and have to start from the beginning. Hopefully I'm not the only one on HN with that issue.
======
pg
It's not a single thing. There are multiple places that use dynamically-
generated links. They make the source very simple. I've gradually replaced
them in the most common situations. Replacing more is not in my top 10
priorities for things to fix. The reason is that it's not really what users
want. What people come here for is good stories and comments. I doubt we have
ever lost a single user over expired links. Whereas stupid or uncivil comment
threads have probably cost us lots of users, and indeed, some of the ones I'd
least like to lose. So that's the sort of issue I spend time thinking about.
Incidentally, for those of you working on startups, this is a good example of
why making something people want is not a simple matter of making what they
say they want.
~~~
credo
_> >The reason is that it's not really what users want. What people come here
for is good stories and comments. I doubt we have ever lost a single user over
expired links._
Yes, you probably haven't lost any users over expired links
However, I think you have inconvenienced a lot of users through the expired
links. Sometimes, I think it is good to spend a little bit of effort on
helping a _large_ number of users.
I'm assuming among readers (who attempt to go past page-1), an overwhelming
majority has hit this problem multiple times (and lost time because of this
problem)
~~~
SiVal
Amen. What a nuisance. You can keep clicking the next page button to see what
other stories there are until you actually read one, after which the next page
button will fail, and you'll have to start over again. What's the point of
even having more than about three pages? The only way to reach those pages is
to keep clicking next while carefully avoiding the temptation to read anything
along the way, lest you get sent back to Level 1.
I'm not buying the argument that if HN has good stories and comments people
will keep coming back and if they come back, it means they _want_ a next page
button that fails. A doesn't imply B.
If frequent expiration is to remain a _feature_ , would it be possible to have
a preference setting allowing us to put the first four pages or so on our
front page? Then we could read whatever looks most interesting among the first
120 items instead of the first 30 before we get that expired next button we
supposedly don't mind.
~~~
nazka
To avoid that I use this website: [http://hckrnews.com/](http://hckrnews.com/)
Maybe you should take a look. Just simple and useful.
And to share everything I also use a theme for HN. It makes the design a
little more as a flat design and with bigger letters which is especially what
I wanted. [https://github.com/gabrielecirulli/hn-
special](https://github.com/gabrielecirulli/hn-special)
~~~
wanda
There is also [http://hackerbra.in](http://hackerbra.in)
but I always use vanilla HN because I'm fond of it and the UI is pretty much
the best for me.
That said, it would be very cool if users could implement their own custom CSS
natively like you can on [http://yayhooray.net](http://yayhooray.net)
I personally detest browser extensions and I don't like how they slap custom
CSS over the top of sites like make-up. Even those who aren't up for fiddling
with style sheets could share in what others make.
~~~
nazka
Thank you to share. For extensions, I do like the good old design of HN but I
really prefer to have bigger letters. That's mainly why I use the other one.
~~~
SiVal
Thanks for your suggestion, too, nazka.
------
ilaksh
They are not going to make improvements to Hacker News. They have proven that.
They don't have to fix it or make any improvements. They can run a very poorly
performing site with no features and a horrible appearance, because they are
entrenched, and they literally own quite a large portion of their userbase.
Unfortunately no matter how many people invent software that does the same
thing as Hacker News but works much better and offer it up for free, nothing
will be done.
The owner of the site has too much invested in its technology stack (Lisp) and
its particular implementation and appearance. The improvements necessary
probably require going back on some of those fundamentals, which is never
going to happen, because they are too proud.
~~~
asveikau
I upvoted you because I like seeing people who go against the grain here, who
hold combative viewpoints and are willing to be blunt about faults, regardless
of whether or not I agree.
However, after seeing this:
> ... because they are entrenched, and they literally own quite a large
> portion of their userbase.
> Unfortunately no matter how many people invent software that does the same
> thing as Hacker News but works much better and offer it up for free, nothing
> will be done.
... I have to say, if you are disappointed, have you thought about testing
this theory? This website has not been around forever. It isn't the first of
its kind either. I'm probably not the only one here who came to this site
after having frequented a bunch of others that were essentially the same
thing. So I don't expect it to be the last one, either. If someone has the
interest and the skill set, I say, please do make this. Worst case you waste a
few weekends or something.
~~~
ilaksh
There are a number of Hacker News clones, i.e. people got fed up and even went
ahead and figured out how to mirror the Hacker News content. Far as I know
very few if any gained any popularity, but its not because they weren't
better.
~~~
sehr
I quite enjoy lobste.rs. Despite the lack of discussion, the majority of the
topics posted are interesting and turn over pretty fast (in comparison to some
of the other replacements).
~~~
tomcam
Thank you for pointing out lobste.rs. I like it. Can you issue me an invite?
~~~
sehr
Of course, email me at [email protected]
------
pchristensen
They are continuations stored on the server (not a Lisp-specific feature).
There is a limit on the number of continuations stored, which is why older
ones come up as unknown or expired.
This has been there since Day 1 and will probably never be changed.
See also
[https://news.ycombinator.com/item?id=163696](https://news.ycombinator.com/item?id=163696)
[https://news.ycombinator.com/item?id=2677469](https://news.ycombinator.com/item?id=2677469)
~~~
pg
Closures, not continuations.
~~~
elwell
Could you give a quick explanation or a link that explains how that is set up?
(closures stored on server)
Just curious.
~~~
wlievens
A closure is a function augmented with implicit references to the context in
which it was created. In case of an upvote link it would hold references to
the post you could upvote. That reference exists not in the URL but in the
closure at the servers side. If you keep these objects in memory indefinitely,
you'll run out of ram.
~~~
elwell
Oh, I was assuming some sort of custom implementation for doing that. If it's
just hanging around in RAM, fair enough; can't see how that has scaled so
well, but hey.
~~~
wlievens
Well, a closure can't be more than a couple hundred bytes, I guess.
If he wants to continue with that technique, I'd hack it like this: use
reflection to crawl the closure, isolate the variables bound to the closure
context, serialize those (the user id's, post id's, etc). Then the closure
code, which will be one of only a few "templates", can be put into a global
dictionary. The serialized state goes into the URL parameters. The closure is
collected, and "reified" from the global dictionary and URL state once the
user performs the action.
I don't know if LISP's reflection can pull this off, but I'm pretty sure it's
no biggie.
------
codex
Visible signs of entropy considered harmful:
[http://en.m.wikipedia.org/wiki/Broken_windows_theory](http://en.m.wikipedia.org/wiki/Broken_windows_theory)
------
makecheck
Although this is a significant problem, it’s probably better to use the
bottom-of-page links:
\- “Bugs” (in this case, already seems to be known and talked about; see [1]).
\- “Feature Requests” for anything that isn’t a bug.
[1]
[https://github.com/HackerNews/HN/issues/11](https://github.com/HackerNews/HN/issues/11)
------
vl
For practical solution: Install "Hacker News Enhancement Suite" Chrome
extension, it solves this and godzillion other problems.
~~~
sikhnerd
I loved this extension, and is really the only thing I'm missing now that I've
moved back to Firefox :(
------
11thEarlOfMar
No, you are not. It is annoying.
------
SamReidHughes
What sort of data structure do you recommend they use to efficiently
reconstruct older story orderings?
~~~
recursive
No one's asking for older story orderings. I'd prefer newer story orderings.
~~~
dsuth
Much like every other paginated site with constantly updating content in
existence. Just link to the next page with whatever the current content for
that page is. People can figure out that items they're looking for get bumped
from one page to another semi-frequently.
------
btbuildem
I think it falls under "Not important enough to fix even though everyone
complains about it all the time" \-- luckily there exist browser extensions
that fix what authors of this site couldn't. (CTRL-F for said extensions)
------
diminoten
This site isn't actively developed, and hasn't been, as far as I know, since
it was established in 2007.
This is intentional. I forget the specific rationale, however.
So no, to answer your question (though I'm not pg), it likely won't be fixed.
~~~
pg
Actually we change things almost daily.
~~~
umanwizard
Any recent examples? (Just curious, not trying to debate you)
~~~
fblp
I'd guess it'd be under the hood tweaks related to building and maintaining
the community (comments and stories)
------
slashnull
I was about to post about it.
I would definitely like to see this one sorted out.
------
DanBC
It is a useful feature, not a bug.
People need to refresh the thread before they respond to ot, especially if it
is a day old. This ensures they have an uptodate version of the thread and
allows them ro see if anyone has already made their point.
People clicking next to read past the first page is good. Open any comment
pages you want to read in new tabs, and refresh those tabs just before you
comment.
I strongly agree that there are other problems with HN that need fixing.
------
jijojv
From a UI perspective is it too much to ask that instead of showing a FU
expired message, just client side redirect the user back to the homepage -
should be trivial to implement.
On a desktop it doesn't save much due to bookmarks bar but on mobile it saves
a lot of effort on starting over.
------
wglb
_expired link issue came from using a new lisp feature_
I don't think this is the case.
This fix would have a low priority on my list. I would rather have work done
on improving the quality of comments and unfortunate high ranking of
middlebrow comments.
------
dded
One of the worst things about expiring links is that they punish you for
taking the time to _read_ articles and long discussions. If I'm just skimming
through, there's no problem with expiring links.
------
dserban
The issue at hand never annoyed me too much. It can probably be fixed with a
browser extension (I'm using HN Enhancement Suite, maybe contact the author
and start a discussion?)
------
IvyMike
I'd just like it if the "expire links page" said "Expired link, sorry. Here is
a link to a fresh top page"
------
thekevan
The word "fix" assumes it is a problem. You load a page and after a certain
amount of time, the next page is expired.
I am not saying, "it's not a bug, it's a feature!" I'm just saying that's how
it works.
~~~
jacquesm
It is a problem.
| {
"pile_set_name": "HackerNews"
} |
Quick Archive Service For Information Junkies - danielhodgins
http://www.getterdown.com
Just whipped up a quick and dirty prototype for a sexy little service I have been dying to launch for a while now. Any thoughts on the concept and philosophy of having a quick archive that functions as a 'second brain'? Please note this is the first iteration, and therefore, the features are minimal. Just wanted to launch something 'embarassingly early' as Reid Hoffman from LinkedIn so eloquently puts it.
======
danielhodgins
Trust is certainly a big issue with web applications. Before building
GetterDown I used Basecamp for an instant archive. Their functionality didn't
quite suit my needs, but I did trust 37 Signals with my data. Anything that
needs extreme protection (banking account info, passwords, etc) I just keep in
file folders at home.
Our user permissions and access system forbids us from looking at your user
data. As a user I would not want some admin peeking at my personal data, and
we want to ensure that users trust our system 100%.
Thanks for your comment, RiderOfGiraffes.
------
danielhodgins
Any feedback about this service? Your constructive criticism is appreciated.
~~~
RiderOfGiraffes
You've mis-spelled "separate".
I'll try it when I'm at a browser for which it works.
~~~
danielhodgins
Thanks for pointing out the spelling error. Sounds like you had some browser
issues with the site.
~~~
RiderOfGiraffes
I use an old browser (Konqueror 3.0.3 on KDE 3.0.3) on an old OS (SuSE 8.1)
better suited for plain text than fancy web. It's fine on web 1.0.
Actually your site seems mostly to work. It does seem slow. That might just be
my browser taking a long time to work out what to do with what you've sent.
Not sure I'd use the service. Like most people, I guess, I've already got
systems that scratch the itch, and I'm reluctant to put important stuff in
someone else's control. I would think that not-yet-established people would
have fewer reservations.
If I think of more comments, I'll let you know.
EDIT: The reason for putting some items top right and others on the left is
unclear to me. I'm not sure which to look in first when I want to do
something, but I'm not sure what. Probably with practice I'd know whether to
click "here" or "there", but it's a long way to move the mouse between them.
It's a small, picky, subjective design issue.
~~~
danielhodgins
There are lots of issues with the site right now, and that's to be expected. I
am fairly new to programming, so a few hiccups are to be expected. However, I
was able to actually launch something, and that matters. The decision to
actually put something out there way too early has already revealed many
things about the original idea and how it could be better executed. Thank you
for the feedback.
| {
"pile_set_name": "HackerNews"
} |
Phreeze - Ruby on Rails for Backbone.js + PHP - johnx123-up
http://phreeze.com/?utm
======
mikegirouard
This is cool, but is it possible to generate apps w/o relying entirely on
Ajax?
Truthfully, this style architecture is the root cause of almost all of our
support tickets. Our percieved load time has gone up quite a bit as data
tables, forms and property lists all need to be re-populated with every page
load...
If users try to trigger an editor prior to event handlers binding fully, at
best nothing happens; at worst unpredictable things (eg: orphaned
records/workflows, things only appearing to have been edited/deleted, etc).
And probably the biggest problem I have with giving this much responsibility
to the front-end is dealing with the mountains of interdependent JavaScript.
All these things are solvable, I know: for example push state helps with the
page load problems, event queuing helps keep ultra-clicky users in check and
having solid conventions helps keep JS organized properly; but I still find
myself always going back to relying on tried-and-true progressively-enhanced
HTML.
On that note, I have to give props as it is a breath of fresh air to see all
these great technologies used in a framework like this.
| {
"pile_set_name": "HackerNews"
} |
Ask HN: What did you create in 2011? - mumm
What side projects, apps, hacks did you build in 2011?
======
JangoSteve
In addition to client work...
* Created <http://jspkg.com> for hosting javascript packages. A sort of plugins.jquery alternative, except for _all_ JS projects. This is still a very active work in progress that I've been working on for about 7 months now.
* Created the jquery dynatable plugin as a semantic HTML5 replacement for jquery datatables (<http://jspkg.com/packages/dynatable>).
* Rewrote basically the entirety of the rails/jquery-ujs adapter (kind of a creation, right?) that's now included in Rails (<https://github.com/rails/jquery-ujs> and <https://rubygems.org/gems/jquery-rails>).
* Rewrote the entire remotipart gem for ajax file uploads in rails (<https://rubygems.org/gems/remotipart>) (again, I'm assuming the rewrite counts, since it essentially became an entirely new project that happened to have the same goals as the original).
I also contributed to a lot of other open-source projects like the ruby
carrierwave gem, citizenry, ruby sunspot (solr gem), ruby-git gem, and some
others.
I consider these contributions to be pretty much on-par with things created,
because whenever I want to create something, my first step is seeing if there
may be some existing project that even comes close, to which I could
contribute instead of starting something new for people to keep up with. So
really the only difference between creating and contributing is whether or not
I can find something of similar quality and purpose that already exists.
------
pawn
I created my first xbox 360 game, piniq. [http://marketplace.xbox.com/en-
US/Product/piniq/66acd000-77f...](http://marketplace.xbox.com/en-
US/Product/piniq/66acd000-77fe-1000-9115-d80258550a04)
------
svmegatron
A handful of weekend and side projects:
* <http://www.coachulous.com>, a web app for triathlon coaches
* <http://loanarranger.heroku.com>, a visualization tool for mortgage/car/student loans
* Aspect Ratio Converter ([http://itunes.apple.com/us/app/aspect-ratio-converter/id4776...](http://itunes.apple.com/us/app/aspect-ratio-converter/id477698489?mt=12)), a calculator for resizing images, embedded video, and flash objects without screwing up the aspect ratio
* <http://www.receiptparty.com>, a service that stores and organizes your digital receipts
* <http://realpersonreminders.com>, telephone reminders from a real person
------
pkamb
Got some apps into the Mac App Store. Such as...
Reddit Notifier (for your OS X menubar):
[http://itunes.apple.com/us/app/reddit-
notifier/id468366517?m...](http://itunes.apple.com/us/app/reddit-
notifier/id468366517?mt=12)
------
MarkTraceur
<https://qrustom.com> was a big project for me, <https://gitorious.org/stattr>
was another, and <http://test.mine.bz> was something I contributed to. I also
did <https://gitorious.org/mmake> , though I don't feel like I really finished
it.
I also did a really stupid javascript library:
<https://gist.github.com/1138419>
Hopefully 2012 will be even better!
------
jmslau
Built a simple site to visually search Kijiji (in Canada) and Craigslist (US
and Canada) to help my wife look for baby stuff.
<http://shopcaste.com>
------
dholowiski
I created <http://onepix.me> in about 3 months of 2011 I did the bulk of the
coding on <http://localbeer.me> (find great beer, brewed locally) in 2011 I
created <http://imgonly.info> \- only the images from the Reddit home page in
2011 I also created several smaller failures, which were quite fun as well.
My plan for 2012 is to create revenue from one, or all of the above sites.
------
jessepollak
Built an app to help students at my college save money by finding a shared
ride to the airport.
<http://5crideshare.com/>
------
tg3
I made <http://www.newsfeedy.com> to provide context for trending topics at a
glance. Born of my desire to know what breaking news/trends were, while being
too lazy to google the Twitter trending topics.
Started writing (semi) regularly on my blog, <http://tgriff3.tumblr.com> \- a
big step after many stops and starts.
------
polyfractal
An email list! I interview startups which are hiring and email the interview
to my list. Thinking about podcasting the interviews in the near future.
<http://startupfrontier.com>
Also a visualization of US Foreign Aid using D3: <http://www.euphonious-
intuition.com/USForeignAidVis/>
------
davesmylie
I created <http://dudmail.com> \- a disposable email site that allows you to
automatically forward emails, and permits attachments.
It's not been as much of a success as I was hoping (currently 1200 registered
users, with quite a large number more of unregistered users), but it was a
project that I started _and_ finished =)
~~~
pestaa
For 1200 users, many entrepreneurs would cut out and sell their kidneys.
Congratulations on shipping your project! I'd like to check it out, but seems
down for the moment...
EDIT: It's live actually. Looks like a problem on my end.
~~~
davesmylie
yeah, don't get me wrong - I'm (sorta) happy with that, but I don't think
they're 1200 real users.
You don't need to register to use 90% of the sites functionality, so most
people probably never register.
But it's free to register, so of those that do, probably only 10% come back
and use the site regularly. Certainly it only seems to translate to about
100-200 uniques a day.
I'm still getting about 2-10 registrations a day, so hopefully (given a long
enough period of time) that number will go up.
The big problem at the moment though is that I've submitted to all the app
directories that I could find. This made a huge difference in google page rank
for "disposable email" (made it up to page two at one point). Now though, with
no new links I'm slowly sinking (now down to page four).
------
ecaroth
Still a work in progress, and none outside of my fulltime job: FitBolt
(fitbolt.com) - workday health & wellness platform. Gives you
alerts/actions/notifications with posture corrections, exercises, stretching,
health & nutrition tips. Currently have a web version, firefox & chrome
plugin, and pokki (desktop) version
------
smoovej
Created a fun book recommendation site for kids: <http://bookoneer.com>
------
deutronium
I created <http://www.adopt-a-cloud.com/> based on a half bakery idea
(<http://www.halfbakery.com/idea/Adoptacloud_2eorg>) using the Play framework.
------
sagacity
Two that I like the most (although not exactly side projects):
<http://getlocalne.ws> (Global News Aggregator) and <http://www.RapiDefs.com>
(Web 2.0 English Dictionary)
~~~
dholowiski
Wow, I live in a small town in Canada and it had a news feed. Nice. You might
want to think about geolocating the user by IP address, and displaying their
local news without having to select a city.
~~~
sagacity
Thanks. The home page already has IP to geolocation to suggest country/city,
using a free open db (so the city-level accuracy is not very high).
------
aymeric
I created <http://goalstribe.com> (democratizing group coaching) and UserLove
<http://userlove.net/products/5> (Get video testimonials from your users).
------
rykov
<http://www.gemfury.com> for hosting private Ruby Gems. I wanted a unified way
to deploy software for another project and decided to use gems. First built it
for myself, then figured it would benefit others.
------
brewin
<http://20suggestions.com> \- Recommendations based on your tweets.
I created it to learn Ruby, Sinatra, JQuery, and web development in general.
It was a fun little project.
------
apsurd
<http://jekyllbootstrap.com> \- The quickest and most hassle-free way to get
your new Jekyll powered website up and running. 100% compatible with GitHub
pages.
------
MattBearman
I created BugMuncher - a feedback widget that allows users to create marked-up
screenshots of website errors (like on Google +) - <http://bugmuncher.com>
~~~
dholowiski
Looks great, I might actually use this today. Also, nice theme... i'm using
the exact same one for one of my projects.
~~~
MattBearman
Thanks! Hope you like it, and please let me know if you have any suggestions
as I'm putting a lot more time into it this year.
You wouldn't believe how many sites I've seen using that theme, unfortunately
it's arguably the best SaaS theme on themeforest, one of my goals this year is
to get a new site deign.
------
sdotsen
My first solo project is called iKeepm. It's a service that allows you to
track your personal assets for insurance purposes.
<http://www.ikeepm.com>
------
jonp
I built <http://www.birthdaysudoku.com> \- sudoku puzzles customised to
include a date of birth.
------
ohashi
Created Gift Lizard (<http://www.giftlizard.com>) a tag based gift
search/discovery site.
------
bodegajed
I made <http://tweetcaddy.com> a web-based tweet calendar scheduling software
:)
------
aespinoza
I created a really cool Back-end-as-a-Service called iKnode.
<http://iknode.com>
------
damoncali
Bison Ballistics: <http://bisonballistics.com>
------
pknerd
I created Snapmarks- <http://sm.sidlabs.com>
~~~
pknerd
Oh I created Am I Beautiful too. Another iphone app just to help those
women/girls who think they are not good at all and perform bad in their lives
just because they think no one love them.
<http://mib.sidlabs.com>
------
gdhillon
We created a context aware to-do/task list application. We make
recommendations for each of user's tasks to help them get done quickly. Check
us out at: <http://diglig.com>
| {
"pile_set_name": "HackerNews"
} |
The Cap Theorem - decanus
https://distsys.substack.com/p/the-cap-theorem
======
pjkundert
Very accessible summary of CAP.
The implications of this for cryptocurrencies are perhaps surprising to some:
[https://pjkundert.svbtle.com/holochain-currency-vs-global-
co...](https://pjkundert.svbtle.com/holochain-currency-vs-global-consensus)
| {
"pile_set_name": "HackerNews"
} |
Ask HN: Good books for the holiday season? - NTH
I have some time off over the next few weeks and I'd like to catch up on reading. What are some books about the business of the tech world that you recommend?
======
mrkmcknz
Lean Startup - Eric Ries, The Snowball {Warren Buffett} - Alice Schroeder,
Founders at Work - Jessica Livingston, Essays in Persuasion - John Maynard
Keynes, The Principia - Sir Isaac Newton,
------
SuperChihuahua
Leaving Microsoft to Change the World - John Wood, Influence - Robert
Cialdini, The Black Swan - Nassim Nicholas Taleb, Moments of Truth - Jan
Carlzon
| {
"pile_set_name": "HackerNews"
} |
How To Write Unmaintainable Code - nreece
http://freeworld.thc.org/root/phun/unmaintain.html?repost=forPosterity
======
thalur
Using i and j as loop or temp variable names when working with complex numbers
should get bonus points ;)
------
dunk010
Ancient, but awesome
------
erikwiffin
Could I make a request for an example of _good_ documentation? Obviously this
is hilarious, and for the most part "do the opposite" would work just fine;
but a readable, friendly, best-practice "this is how you should document
stuff" article would be appreciated.
~~~
patio11
I always tell my Indians: Write all comments and code with an eye to them
getting read in two years by a man you've never met who does not speak your
language, has never heard of this project before, and needs to fix the bug
that brought down the server in less than 2 hours or the boss will have his
hindquarters. Because that is EXACTLY who will be reading this next.
Compliance with this direction is... sporadic.
/ __implement first business logic */ public void process() { ... }
~~~
DannoHung
Do the needful and reply to me the same.
------
Maro
My first "real" job was basically maintenance programming. This is priceless
indeed =)
------
trickjarrett
I printed out sheets with the following quote in big block letters and passed
them out to my fellow programmers:
"Always code as if the person who ends up maintaining your code is a violent
psychopath who knows where you live"
------
jackchristopher
Substitute code with prose, finagle a bit and this is great writing advice.
------
mlLK
This document is so extensive it's eerie.
------
edw519
"If you call your variables a, b, c, then it will be impossible to search for
instances of them using a simple text editor."
This may be the single most important piece of advice in the history of
writing source code.
Then why do I keep running into violations of this. Just yesterday. Again
today. 3 times last week. It's tough enough sifting through your garbage when
I don't know what the variables means, it's 10 times tougher when I can't find
them.
The solution? If you ever murder a programmer who wrote
for x = xx to xxx
the penalty should be an $18 fine and community service.
[Seriously, I would amend this rule to, "No variable name should fully contain
any other variable name or reserved word." If I do a global search for
"vendEmail" I should get every instance of that variable and _nothing else_.
Naming variables is not rocket science. Sometimes it just seems that way.]
~~~
fhars
Your variable "vendEmail" contains the keyword "end" and is forbidden
according to your rules (depending on your language of choice, of course).
~~~
edw519
Do what I say, not what I do. (Guilty as charged, bad example.)
~~~
seregine
So when naming a variable, I have to remember all other identifiers in the
project? Seems impractical, especially for large projects.
My guideline is to use descriptive English words, not abbreviated. I take a
minute to find the right word, check the dictionary or Google when necessary.
If the same identifiers are used across the codebase, then they're used to
describe similar feature. A little extra typing saves lots of debugging time.
Not that my code has any bugs, mind you :)
The other guideline is to spend more time choosing names for interfaces than
for implementation variables, but that's just part of the general "interfaces
are more important to get right."
------
cloc
Hahaha this is fu..ing hilarious
unused local variable warnings? i = i; PRICELESS
------
bigbang
How To Write Unmaintainable Code? Write maintainable code in Perl.
~~~
known
I think we can write Unmaintainable Code in all programming languages.
------
TriinT
This is old stuff, but it cracks me up every time I (re)read it. My favorite
one is:
#define TRUE 0
#define FALSE 1
| {
"pile_set_name": "HackerNews"
} |
How A Great Product Can Be Bad News: Apple, iPad, and the Closed Mac - BSeward
http://createdigitalmusic.com/2010/01/27/how-a-great-product-can-be-bad-news-apple-ipad-and-the-closed-mac/
======
MrSartorial
That Apple is creating a closed system is of little surprise. Steve Jobs is
all about control. It works in the short term, but I believe it will bite them
in the ass over the long-term.
Making use of a closed-system and trying to be the best in a category assumes
that you have access to the most brilliant minds in that field, and the most
brilliant marketing campaign. What makes Apple great? Well, they can control
every aspect of their production because they own all their own tools and can
keep out the crap. Also, they have slick industrial design. For now they also
have some of the most brilliant minds in the industry, but not all of them.
This is why they will never achieve world domination with their products. I
suppose I could make use of their own advertising to make an example : "I'm a
mac, I'm a PC". You are either an apple person or you're not. Their closed-
system allows little flexibility. They would be doomed to what they used to be
were it not for them opening their file formats to standards.
Why is this not the best approach? Because of human innovation. People hate
being held down, forced into one category, etc. This is what apple is doing,
but because their products are so innovative, consumers will go for it.
Google is much smarter; they know what to hold onto and what to open up for
the masses. Even though they employ many geniuses, they are always on the
search for new innovative ideas. That's why they purchase so many startups, or
so I've been told.
That's why I believe in a race between Google and Apple, Apple WILL lose
eventually.
Closed-systems should actually drive innovation because they must be
circumvented. That's why Apple products are cracked all the time. So I guess
the challenge then is, that if you aren't happy with Apple, build a better
product and market it as well as they do. All things being equal, the open-
system product will win every time. You can't employ all of the brightest
people yourself, all of the time. I think Apple will learn this in due time,
and then things will change.
A sidenote is that a large part of Apple's appeal is simplicity because of
their closed-system. If anyone could create an opem-system as turnkey as
theirs, they'd come ahead by far. I think one of the closest systems to being
fully open and turnkey I've seen so far is Facebook Connect, but I'm starting
to become too long-winded, so I'll leave it at that.
~~~
telemachos
> _People hate being held down, forced into one category, etc._
Here's an alternative take on this (with a story). I recently saw Thomas
Keller (chef and owner of Per Se here in NYC and French Laundry in CA, among
others) talking about a new-ish restaurant of his in CA, Ad Hoc.
Ad Hoc has no menus. They make meals and serve them family style. You take
what you want from the dishes provided. You have choice only within that
range.
He argued that true luxury was the freedom _from_ choice. Now in a political
context, this is Orwellian and terrifying. But in the context of a meal, it
made a lot of sense to me. Let a great chef do his or her magic, and I will
try any damn thing they put in front of me and thank them for the privilege.
For us as hackers, computer use is more like politics. We want the openness to
do what we want, to dig around, to break things and fix them again, to change
things. For most people, however, computer use is more like a meal. Give them
some great toys to play with and they won't mind the limitations at all.
~~~
lambda
But, this isn't about giving the users freedom from choice; with 140,000
options in the App Store, that's a lot of choices.
This is explicitly about locking developers down, and not allowing them to do
things that Apple does not approve of. Want to write a competing web browser?
Sorry, you can't. Want to write an awesome JIT that optimizes itself for their
shiny new chip? No can do.
Imagine if this policy had been in place on their desktop or laptop computers.
Half of the technologies that they themselves use and tout as great would not
exist. LLVM/clang? WebKit? Heck, the Mach and BSD kernels that this is all
built on. None of this would have been created in a closed ecosystem with
restrictive policies, and yet Apple is perfectly happy to take advantage of it
while not letting anyone else play in _their_ sandbox.
The hypocrisy of their policies makes me sick.
~~~
izendejas
Your third paragraph sums up the link very well. Yes, many customers win in
the short-term, but they will lose in the long run. I'm one that thinks web
apps are the future, anyway, so Apple's focus on specialized apps that can't
be ported to other platforms very easily and without having to invest a whole
lot up front is going to bite them hard.
When html5 matures and is more widely adopted, developers will sidestep the
ridiculous shackles of the app store approval process... effortlessly. At that
point, it'll be a competition between the best developed browsers and the most
inexpensive mobile devices that will still deliver a very good experience.
Google, I think, will come out on top then w/ Google Chrome OS.
~~~
krakensden
When html5 matures? Seriously? Have you ever done any web development? Have
you looked at html5? It's an incremental upgrade, nothing that's going to let
you do new interesting things with all the new, interesting hardware we have.
Plus, it will still be very, very slow compared to code running through fewer
layers of indirection.
------
zacharypinter
This post adequately sums up my concerns.
Here we have a device that doesn't support USB thumbdrives, doesn't support
dropbox (at least system-wide, I assume the dropbox iphone app would work), is
unable to run ruby or any of my other dev scripts/tools, cannot install
firefox or firefox plugins, etc.
I do not want to see computing head this direction.
~~~
coffeemug
My dad, mom, grandma, and grandpa can watch videos, look at photos of their
kids/grandkids, send e-mails to their relatives oversees, and read their
favorite books on it, all without the need for a "computer-savvy guy" who has
to teach them how it works, and fix it when it's broken. In other words, it's
a logical conclusion of the personal computer revolution. I understand you
need to run your Ruby scripts, but this product was designed for the 99% of
the people in this country instead. You're not the target audience.
~~~
lambda
The thing is, without an open platform, the new, innovative ways of working
with this machine will never be invented.
This is about far more than running your own Ruby scripts. It's about the fact
that true innovation cannot exist in such an environment. And the problem is,
you will not see what you're missing; people won't bother developing new
technologies that have no platform they can legally run on.
Would the Web exist if Microsoft had been able to ban Netscape from running on
Windows? What new, groundbreaking technologies are we missing out on because
it's not worth the time and effort to create something new if the platform
vendor can simply forbid you from publishing it?
~~~
mattmanser
This is alarmist nonsense.
The App store and the iPhone have fostered a colossal amount of innovation,
and made a lot of normal non-techy people very, very happy. And a bunch of
techies too.
And in the end I hope it doesn't come down to open source advocates getting
their way so they can install vim, but it being about my Mum being able to use
it without having to phone me saying that it's all gone wrong again and can I
talk through 3 hours of trying to fix the damn thing.
~~~
andreyf
_I hope it doesn't come down to open source advocates getting their way so
they can install vim_
Installing vim isn't mutually exclusive from having a usable system.
~~~
telemachos
Some of us might argue that installing Vim is the sine qua non for a (truly)
usable system. (For what it's worth, I just love me some Vim. Overall, I'm on
the "this device is perfect for most people" side of this actual argument.)
------
mortenjorck
There is only one thing I want Apple to do at this point.
Open up developer ad-hoc provisioning. Keep the App Store closed, heck, make
it even stricter, but give that alternative, ad-hoc channel a chance. You
don't have to publicize it; all you need to do is to change a single number in
a plist somewhere on your activation servers from 100 to unlimited.
Then the hacker community will focus on adding features to your product
instead of on compromising its security.
------
Todd
I know of no other company that can charge $100 for 16GB of flash memory.
Differentiating on real features like 3G is good and expected. Differentiating
on commodity hardware like memory is unfair.
With the ubiquity of SD and micro SD and need for more and more storage due to
the explosion of digital media, they don't even provide a port. Obviously,
they don't provide a port because it would destroy their product line. When
you have the cheapest digital electronics providing these ports and high-end
hardware like the iPod/Phone/Pad not providing it, that says a lot. It says
"we don't care about anything except our product the money in your wallet."
It's ironic that MS gets so much flack from developers in the OSS purist and
Apple fanbois camps about their closed products. They've always been the most
open from the hardware perspective and they've always been great to
developers. Apple is just the opposite.
If we care about an open future in computing, we need to think clearly about
which platforms to develop for.
~~~
raganwald
_I know of no other company that can charge $100 for 16GB of flash memory.
Differentiating on real features like 3G is good and expected. Differentiating
on commodity hardware like memory is unfair._
Ahem: [http://www.wired.com/gadgetlab/2010/01/blu-ray-maker-re-
boxe...](http://www.wired.com/gadgetlab/2010/01/blu-ray-maker-re-
boxes-500-player-charges-3500/)
~~~
Todd
LOL. That's one of the best.
------
samd
The revolutionary thing about this tablet is that it's not a Mac. Tablets have
been around for a while and haven't caught on because nobody wants to buy a
keyboardless laptop running a normal OS.
If you are worried about openness, then look to Android. I'm sure we will see
a plethora of Android tablets that will be like a large Droid/Nexus One just
like this tablet is a large iPhone.
~~~
yesimahuman
But the design will be shit and you won't have the user base.
~~~
keltex
"design will be shit"? I think that the Nexus One has eliminated that
argument.
~~~
wooster
Really? Everyone I know who has used one says that bottom touch bar is a PITA.
It keeps getting hit by accidental touches. Speaking of which, if you have a
touch screen, why do you need that many hardware controls?
~~~
orangecat
Huh, I like it. Especially the universal back button; it provides a much
better flow than the iPhone where you have to go back to the home screen and
relaunch the app you were in when you got a text message.
------
chaostheory
Unfortunately, this is what people like my mom and my sister want: something
dead simple and easy to use like iPhone.
Both OSX and Windows still give them a lot of trouble.
It's hard to pair both freedom and flexibility with ease of use and
simplicity.
~~~
mannkind
Unfortunately? Yeah, how dare they want something different than you!
~~~
chaostheory
Yes, it's unfortunate that the system they want comes with apair of handcuffs.
I guess there is nothing wrong with it if you don't notice it.
~~~
Maktab
Restrictions only matter when they limit you from doing things you want to do.
For the vast majority of consumers, the closed nature of the iPad isn't a
restriction, it's a convenience.
We need to understand that the average HN reader is not the target market
here. We're generally more technical and are willing to tolerate more
complexity and maintenance in return for a greater level of freedom over our
software and devices. The things we regard as important are not seen the same
way by most people. They just want an appliance that makes the things they do
every day as easy and hassle-free as possible.
~~~
chaostheory
As I've mentioned in my original post I understand it. I was just clarifying
to a reply as to why I'm not happy with it.
------
fierarul
I bet someone at Apple is thinking hard about how could they seal the MacPro
case too. It's the only system they sell that you are allowed to open and
upgrade or tinker (beyond something limited like a RAM upgrade).
Apple is no longer called Apple Computers because they will not sell computers
anymore. They will sell closed devices with a closed software ecosystem. They
will also sell the best devices money can buy.
~~~
ericd
What? They have clearly segmented the market, they're not taking a "let's seal
everything" approach.
The Mac Pro is made for power users and developers, it's made very easy to
open and add hardware to.
The iPhone is made for everyone on the planet who can afford it, it is made to
be very easy to use for normal use cases and very hard to screw up to the
point where someone needs someone else to fix it.
------
Kilimanjaro
I want my tablet for entertainment, not for work.
And the iPad fits the bill 100%.
$499? Unbeatable!
------
randrews
Eh, every time I hear this argument my response is the same: if they stop
making open Macs, I'll stop buying Macs. I'm not married to it, and there are
open platforms to switch to.
When they make a new thing I don't want, it doesn't make the old stuff I did
want any less cool.
------
jakarta
Apple has managed to maintain consistency and provide a level of experience
over the years by tightly controlling the platform. This is just another
manifestation of that. Look at the App store, the fact that you have to use
hacks to get OS X running on a PC or that you buy Apple computers with OS X
being pre-loaded as examples of that.
If you don't like the closed platform you can grab a PC, but I think this is
just how Steve Jobs does things -- he likes to have as much control as
possible so that Apple can deliver a certain type and level of experience to
users.
~~~
orangecat
Macs are wide open. Apple creates the default user experience, but you're free
to develop and run any software you want without begging for permission.
Apple's total control over the iPhone/iPod/iPad platform is a change for the
worse.
------
aerique
My position is if I pay good money for hardware it's mine and I will do with
it as I please. And I will not buy it until it has been hacked (and I can
install Linux on it ;-) ).
Same with my iPhone. It wouldn't be half as useful without being jailbroken.
------
mmphosis
I am reading a lot of concerns that Apple has created a closed system. You are
right, Apple has a closed system. That's what Apple has mostly sold for years.
What I think is exciting is that this device breaks new ground. It's only
version 1.0. Better devices will come out. Hopefully, from companies other
than Apple. There's virtually nothing stopping another company from selling an
open platform, one that runs open software, has open hardware, has WIFI, has
USB and has higher screen resolution than the 1024x768 that my 8 year old
iBook has. And, hopefully someone will deliver a device that uses low power
open cores.
Stop complaining. Start dreaming up something better.
------
metra
I believe Apple's success stems from its portable devices, mainly the iPod and
the iPhone. Both of those devices could take full advantage of Apple's closed
door policy. The iPod and the iPhone are _extremely_ well built because Apple
had complete control over all the parts. All the other phones on the market
just felt like cheaper plastic knockoffs. Furthermore, Apple is somewhat lucky
that the functionality you'd want from these portable devices is very limited
and so Apple didn't miss any of the market by providing such limited
functionality.
However, devices bigger than iPhone - in the netbook/iPad range - need
significantly more functionality. I believe Apple missed the boat with the
iPad, especially if it really is targeting grandpa and grandma. People are
becoming more tech savvy and they will be less and less willing to shell out
money for an inflexible device that only serves a rigid set of predefined
functions.
The iPad, I'm sure, is constructed extremely well. However, taking it to the
bathroom, to bed and around the house in general isn't the same thing as
taking it everywhere you go. Apple's success is in building beautiful durable
portable hardware. The iPad just isn't portable enough or flexible enough for
people to want it.
------
mark_l_watson
I agree with the article. I look more forward to a light weight Chrome
netbook. I don't know if it is the offing or not, but perhaps a Chrome netbook
could forgo a physical keyboard and have a popup virtual keyboard like my
Droid (although that adds the expense of a touchscreen). Bonus points to
hardware manufacturers: sell a Chrome netbook that looks like a iPad, but has
a slide out physical keyboard like my Motorola Droid phone.
------
slapshot
Apple has become the prime example of closed computing. It has its benefits:
the iPhone is painfully easy to use, has very few viruses, and works pretty
much all the time (except when AT&T drops, but that's a separate worry).
Google is trying to take the opposite pole: you can do pretty much anything on
an Android phone, but that includes buggy software with bad UI design.
There will always be both positions. Both have benefits to different people.
To a HackerNews audience, the open system will almost always seem better --
HackerNews types enjoy tinkering and will tend to be advanced users. But not
everyone shares the HN love of tinkering.
------
ashleyw
At first I was let down with it being closed system. But after a night to
sleep on it, I'm starting to warm to the idea.
I'll never use the iPad for work, and in the same way I can't bring myself
round to using a Mac Mini as my media centre, I don't want the hassle of a
full OS over a purposely built OS for the task(s) in hand. All I'd want to do
on the iPad is browse the web, read, watch videos, and perhaps play some
games.
Overall as long as this isn't Apples future strategy for the Mac platform
(which would be suicide), I think it's a nice product, which by the looks of
it, will do the job it's made for brilliantly.
------
umut
This could be the big step for the developers' dream of using the actual
target device as the host for developing(end-to-end toolchain and the
debugging host of course). Success of open systems(both HW and SW) comes from
this marginal-looking(huge in fact) idea. So, the hardware is there, but
unfortunately they lack the determination. It is sad to see Apple performing
even worse than MS on this very department.
I personally will insist on "not" buying any Apple product unless they develop
a strategy to innovate(as they did in the past) instead of trying to
monopolize the scene...
------
BerislavLopac
Personally, I don't have a problem with iPad being closed. I have problem with
a lack of an open alternative (or several). I'm using an iPhone, but I'm sure
as hell glad there is the Android.
------
tel
I think the biggest obvious point people are missing is that Jobs intends
many, many people to own a MacBook _and_ an iPad. Probably an iPhone, too.
They serve different niches in the ecology of your technological life.
(Oh, and if you've got some other laptop and pick up an iPad just how long do
you think the average user will last before drooling a little more over the
MacBook lineup?)
------
mildweed
If I were Adobe, I'd be furious. Exclusion of Flash from this platform is a
slap in the face, despite Jobs' perspective of how it would break his App
Store model. If it weren't for Adobe focusing their Creative Suite development
on Jobs' platforms, Apple wouldn't have had the design community's support
that it had for so many years. Apple owes Adobe.
~~~
ptomato
If it weren't for Apple, Adobe wouldn't EXIST. Considering what Photoshop was
first developed for and solely for Macs for several years. And the only reason
Adobe even still bothers to develop for Mac is because of the very high
percentage of the design community who are married to their Macs and won't use
anything else. If I recall correctly, something like 40% of Photoshop installs
are on Macs, which considering the general desktop userbases percentages is
fairly dramatic.
~~~
jacquesm
No, it would mean that Photoshop would have been developed for PCs, or
possibly for the workstation class machines of that era.
------
uuilly
I see the iPad as a communal home machine that floats around the house. It
replaces newspapers, books, magazines, remotes (for music and hopefully TV),
picture frames, and for some video game consoles. Eventually it will control
your oven, door entry system etc. To me it's a "home computer."
------
scotty79
Funny thing that under the article advertisement for this appeared:
[http://www.ideal-case.com/demon-silicone-series-case-for-
iph...](http://www.ideal-case.com/demon-silicone-series-case-for-
iphone-3g-3gs-halloween-collection.html?gclid=CPGX153TxZ8CFcGAzAod7hGRgA)
------
DavidPP
I see the iPad not as a "PC" but as an appliance, albeit a really
sophisticated one.
~~~
mannkind
Exactly, it's an appliance like your microwave and refrigerator.
------
c23gooey
i'd like to see one IRL - but i dont see the iPad being especially easy to use
with regards to its size.
on an iPhone you can easily type with your thumbs, grip it firmly and you can
use all sorts of multi-touch gestures.
i cant see that happening with a 10 inch tablet.
you would need to hold it / balance it on one hand and then awkwardly control
it with your other hand. Doesnt seem ergonomic.
maybe one of the accesories they should release is an iArm, so we can hold it
with two arms and confidently use gestures and such with your iArm
------
elblanco
<http://news.ycombinator.com/item?id=1082824>
------
teeja
I can hardly wait until some astute techies pop this thing open and take off
its whalebone corset.
------
ecq
It's really easy.
You use the iPad to:
\- read a book \- surf the web \- organize/look at/show off photos \- watch
videos/movies/tv shows \- listen to music \- send/receive emails \- play games
\- use maps/calendar and the 140k+ apps available in the app store
Anything else, use a Mac (or Windows/Linux).
------
sscheper
In my mind:
For surfing the web: iPad > netbooks
For reading books: Kindle > iPad
~~~
sant0sk1
You've never even held and iPad. How can you come to either of those
conclusions?
~~~
Niten
Because we all know how much more comfortable it is to stare at e-ink than at
a backlit LCD for hours on end? Also, battery life.
| {
"pile_set_name": "HackerNews"
} |
Apple just updated without asking and locked my iPhone - OmleteDuFromage
Just minutes ago, my iPhone 5 just updated itself without asking, and it got locked with an "Activation Error: This device is not registered as part of the iPhone developer Program.". I was still using the ios7 beta 3, and it is/was registered. Why and how the hell is apple doing shit like this without any prompt?
======
spicyj
It's always been the case that iOS _betas_ expire and that you need to always
install the latest version.
~~~
autodidakto
And the betas prompt you to update. But after the last beta (which was the 7.0
GM), update checks within Settings and within iTunes said "you're up to date".
Never was there any hint that there was a problem. Furthermore, the cryptic
errors hiding the inability of updating to "stock" firmware, requiring a
recovery mode restore (despite the last beta being the GM) makes it much more
frustrating.
------
slater
Did you read the beta TOS? I'm not an iOS developer, but I'll bet you a dollar
there's some vague language in there that allows this. Not defending Apple
(well, not too much), but I doubt they updated your stuff illegally. Which
also answers your other question - if the device had WiFi or any other sort of
data access, you probably gave it permission to do updates over the air when
accepting the TOS. Or, maybe it was timebombed, as most commercial beta
software is.
~~~
OmleteDuFromage
Even if I overlook the auto-update part, the phone is still locked, and I
don't seem to me able to restore it in iTunes. Hopefully DFU + restore will
work.
------
roflcopta
>> be dev >> does not know that it expires. >> face palm.png >> DFU the phone
------
acallaghan
This same thing happened to me - I searched Twitter to find a few having the
same problem, but not enough for it to be everyone. It makes sense for it to
be linked to the developer program for iOS 7 betas, as I'm on one too.
------
autodidakto
My iphone 4s was running the iOS7 betas. The last update was the GM beta and
it never asked to update again (apparently 7.0.2 has been out)?
I was listening to a podcast and the audio was still playing when it locked my
screen and demanded activation. Trying to activate, it says "can't connect to
servers". Connected to itunes, it says "this software is out of date...".
Backup, sync, and restore both give "cannot connect to iphone" messages. I'm
currently downloading the 7.0.2 firmware on a 1mbit connection (3 hours to
go!) and hoping a DFU boot and alt+restore will work.
Last time I run my podcasts on a device that can disable itself.
Edit: Twitter complaints here:
[https://twitter.com/search?q=iphone%20activation&src=typd&f=...](https://twitter.com/search?q=iphone%20activation&src=typd&f=realtime)
Judging by the amount, I don't think it's a few devs having this problem.
Edit2: Booting to DFU or Recovery mode seems to let you start the restore
process. Clicking on restore didn't give the same "can't connect to iphone"
error, but oddly said it was going to download 6.1.3 for me. Good sign that
alt+restore will work.
~~~
rstoner
Same problems. Please report back if the update was successful.
~~~
autodidakto
EDIT: People are the bigger disccusion thread
([https://news.ycombinator.com/item?id=6502756](https://news.ycombinator.com/item?id=6502756))
are saying that it's possible to update without deleting/restore by
downloading the ipsw and alt+click the "check for updates button".
\--- Original: \--- Booting to recovery mode
([http://support.apple.com/kb/HT1808](http://support.apple.com/kb/HT1808)) and
clicking restore will download the 7.0.2 firmware (no need to alt+restore),
wipe the phone, and update to 7.0.2
I was getting offered 6.1.3 and not 7.0.2 because my itunes wasn't updated to
11.1+.
Before booting to recovery mode, copy over your camera roll with image
capture/aperture/iphoto just in case your latest backup (iCloud or iTunes)
isn't up to date.
------
plorkyeran
iOS 7 beta 3 expired August 29. It should not be surprising that continuing to
run a beta version long after it's supposed to stop working will lead to
things breaking.
------
OmleteDuFromage
Also, interesting to note how this post went from the front page & top of the
ask page, to nowhere to be found instantly.
------
X4
I upvoted, because I find it funny and the blame is on us, because we don't
complain about mad enough.
Apple just goes along with this, like with many other "technical errors", do
you sincerly believe that it's technical error that they collect data of every
move you do and sync it with itunes, or that they accept nothing but credit
cards, or that they update your phone without asking, or even remove an app
that you bought? I could find references to each of these claims, but it's not
worth it, because you decide.
But don't get me wrong, as much as I was amused by this, I'm that much sorry
for you too on the other side. Because you dear Hackerfriend are getting
treated like shit [1] by Apple so much that even cartoons start joking about
it. The bad thing is that you can't do much about it other than buying into
the other "do not evil" Android phone.
––
[1] [http://www.southparkstudios.com/full-
episodes/s15e01-humance...](http://www.southparkstudios.com/full-
episodes/s15e01-humancentipad)
~~~
aaronem
I'd have thought HN was above this sort of childishness. What a shame.
~~~
slater
Downvote and move on. Conspiracy theorists gonna conspire...
| {
"pile_set_name": "HackerNews"
} |
Apple iPad May Ship With Webcam - fjabre
http://www.wired.com/gadgetlab/2010/02/apple-ipad-may-ship-with-webcam/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+wired/index+(Wired:+Index+3+(Top+Stories+2))
======
cmelbye
I'm buying if it does. I'm on the bubble right now due to lack of camera and
multitasking, but multitasking can be solved using software if someone manages
to jailbreak it. Skype video chat on this thing would be really nice.
~~~
raganwald
Well everyone is calling this "A computer for their Mom." Newslfash: My mother
is in her late sixties and _she_ uses Skype to talk to friends all around the
world. My co-parent's brother lives in Belgium. My brother lives in Winnipeg.
Guess what my children use to talk to their uncles? Guess what our respective
parents use to talk to their sons?
Skype is software everybody's mother uses. A computer for my Mom has a camera
for Skype.
~~~
electromagnetic
Agreed, my mum uses skype to talk to me (I live in Canada, she's in the UK).
It's not a device for my mum, because even for the applications she uses (my
dad worked in IT since before the 90's, it took until the 2000's to get her on
a computer, and until 2008 to get her on facebook) it's simplistic. For my
father, who did web development and application development (before then he
was working with some of the first computer controlled fuel injectors in
vehicles, so I have no clue what language that would have been programmed in),
it's far too simplistic.
I believe one of my cousins even got my grandmother (in her 90's!) onto the
internet to pay her bills. Telephone banking with a nearly deaf woman who has
no hope in hell of understanding an Indian woman, and no chance the Indian
woman is going to understand a 90 year old Geordie. I doubt it would be hard
to teach her how to turn on skype, meaning the iPad would be below her uses.
------
jacquesm
It may or it may not.
The comments point out that it could easily be just an ambient light sensor,
which is actually listed on the spec sheet.
------
telemachos
This meme has to die.
A photo response from John Gruber's Twitter feed:
[http://cache.gawker.com/assets/images/4/2010/02/roncassel.jp...](http://cache.gawker.com/assets/images/4/2010/02/roncassel.jpg)
~~~
spicyj
Looking back at the Twitter feed, it looks to me like he just found the
picture amusing (it was a retweet from John Siracusa's feed).
------
dirtbox
That's just the power button with the pad being held upside down.
Edit: Yep [http://images.theage.com.au/2010/02/01/1084401/steve-
jobs-42...](http://images.theage.com.au/2010/02/01/1084401/steve-
jobs-420x0.jpg)
------
jsz0
I sure hope it does. I just bought a bunch of stock in a company that makes
nose hair clippers. Forget the App Store -- this is the real gold rush.
------
pyre
Looks like an artifact to me. If you look real hard there is a similar
artifact on the right size of the black border just below the upper-right
corner of the device. It's probably just a coincidence that the artifact is in
the place were a webcam would go.
------
gfodor
Also: mark my words, this sucker is shipping with handwriting recognition.
~~~
fbailey
Apple handwriting recognition is pretty bad, and you would need a special
stylus for the multitouch screen and where would you put the stylus...
~~~
pclark
I found the newton recognition to be great. Do you mean in OS X? I thought it
was similar tech.
------
gioiam
I doubt it
| {
"pile_set_name": "HackerNews"
} |
SF CoFounder Search & Product Feedback, tomorrow (saturday) at 3pm - jaekwon
http://main.startable.net/e/event/sXoIhMtQWHSZ
======
jaekwon
We have 3 regular members and we're looking to get at least 3 more interested
individuals for tomorrow's meeting.
The meetings have been great resources so far and we're all psyched for
tomorrow. Come join us!
------
thetylerhayes
Can't wait!
| {
"pile_set_name": "HackerNews"
} |
'It drives writers mad': why are authors still sniffy about sci-fi? - auggierose
https://www.theguardian.com/books/2019/apr/18/it-drives-writers-mad-why-are-authors-still-sniffy-about-sci-fi
======
cljs-js-eval
Leave it to the English novelist community to shun the one field that is
undergoing a golden age. Seriously, what recent books with any staying power
have come out of the non-SF/fantasy genres? Meanwhile, authors like Liu Cixin
and Peter Watts are churning out some of the most interesting material around.
------
PaulHoule
Oddly, science fiction is one of the ways to escape publishing a book that has
"a novel" on the cover that is on the remainder rack for 99 cents. That is,
most literature faces indifference and sci-fi is an alternative ghetto to the
ghetto of "books nobody cares about".
| {
"pile_set_name": "HackerNews"
} |
Google Announces 8x Faster TPU 3.0 for AI, Machine Learning - signa11
https://www.extremetech.com/extreme/269008-google-announces-8x-faster-tpu-3-0-for-ai-machine-learning
======
signa11
not so sure if this number (that of new tpu pods reaching 100 pflops) makes
sense. it seems to be higher than many supercomputers. putting 10 of these
would reach 1-exaflop, which is _estimated_ (iirc) to be human brain's
computation power.
| {
"pile_set_name": "HackerNews"
} |
When Chevrolet Ruled Uzbekistan (2019) - bilifuduo
https://www.ozy.com/flashback/how-chevrolet-ruled-uzbekistan/94984
======
Maksadbek
I am from this country and what is written there is exactly as it is.
It is very hard or impossible to come to a car store to buy a car and go back
with that car home in one day. You must first make an order and wait for
months(usually 4-6) while your car be ready.
Moreover, if you want to buy a car from foreign manufacturers (Mersedes-Benz,
BMW, Toyota, etc) you have to pay 2X of its original price.
~~~
bfirsh
I visited the country a couple of years ago, and a thing that puzzled me was
why almost all the cars were white. Do you know why this is?
Some said it was because it is better at keeping the cars cool, but this
doesn't explain why surrounding Kazakhstan/Tajikistan/etc had different color
cars.
The best explanation I heard was the president liked white cars, so only
allowed white cars to get made. This seems most plausible to me, and seems
like similar things happened in Turkmenistan:
[https://www.motor1.com/news/226932/turkmenistan-president-
ba...](https://www.motor1.com/news/226932/turkmenistan-president-bans-black-
cars/)
~~~
Maksadbek
You're right, 90% of cars are white coloured. Honestly I have no idea why it
is that. Prabably this worth some research.
But usually when my friends wanted to buy a car, they chose the white color by
the following criteria: it does not heat much like other colors on the sun. If
we take into account that there are not much parking lots and garages with a
roof, white colored car is the best choice.
~~~
xenospn
In Israel, people say it's "easier to sell a white car".
------
trhway
This is final assembly only, an absolute minimum required by law to qualify
out of heavily tariffed foreign made car category (the countries of former
USSR, except for Baltic ones, like to highly tax foreign import in order to
supposedly protect "domestic manufacturer" \- as result nobody has good car
building industry). There have been several such Daewoo/Chevrolet plants
across the former USSR. Russia for example also builds Ford and BMW that way.
For example back in mid-199x Elabuga (city in Russia) Chevrolet Blazer factory
had extremely sweet conditions on the Chevrolet Blazers to be assembled there
- basically attach the bumpers and some other details - it took 1 hour for 3
workers per car.
~~~
vbezhenar
Russia used to have few car manufacturers and produced almost every car part
rather than importing it. After USSR collapse those cars were not very
competitive, especially with used cars from Japan and Europe, unfortunately,
so those factories either died or optimized (like VAZ which is part of
Renault-Nissan now and is moving to just build western Renault designs rather
than develop and improve their LADA cars). That's quite tragic situation,
plenty of people are losing jobs, country is losing an expertise.
I'm living in Kazakhstan and we have foreign import tax and "localized builds"
(very minimal work is done). But actually we're in economic union with Russia,
so most of new cars are built in Russia and imported without much taxes. So
it's not that bad here. AFAIK Uzbekistan recently joined EAEU, so, I guess,
situation should improve over few years.
~~~
trhway
>Russia used to have few car manufacturers and produced almost every car part
rather than importing it.
yes and no. Significant share (seems most) of major USSR car manufacturers
started as a transfer of technology deal and improvement on its own has been
pretty small and incremental since then. VAZ - Fiat (196x), GAZ - Ford (193x),
AZLK/Moskvich was "refreshed" by the complete factory transfer of the Opel's
one right after the WWII, ZIL - original 1917 and total re-equipment in 193x -
to build Italian and American cars under license
([https://en.wikipedia.org/wiki/ZiL#History](https://en.wikipedia.org/wiki/ZiL#History)),
UAZ models naturally trace back to the GAZ, and its most known and widely used
-
[https://en.wikipedia.org/wiki/UAZ-469](https://en.wikipedia.org/wiki/UAZ-469)
\- hasn't changed much in 50 years. KAMAZ though doesn't look like an outright
transfer and is kind of local success story, yet also not much improvements in
50 years (probably for the same reason of absence of any real competition as
the USSR planned economy basically segmented manufacturers into their own
quasi-monopoly segments) .
~~~
SomeoneFromCA
Older Kamaz trucks however, looks precisely like Scania trucks, to the point I
could not believe my own eyes when I saw one.
------
bawana
Are tractors heavily tariffed? Motorcycles?
~~~
Maksadbek
Every vehicle is heavily tariffed. Maybe that is the reason why you very
rarely see someone on a Harley-Davidson or Triumph. Tractors are usually
imported by the government.
| {
"pile_set_name": "HackerNews"
} |
Apple Watch Sales Sink - j_hanbanan
http://www.technewsworld.com/story/82250.html
======
sambeau
This is contradicted by what Tim Cook said in his talk with analysts about
Apple's third-quarter results for 2015 on the 21st July.
our June sales were higher than April or May. I realize
that's very different than some of what's being written,
but June sales were the highest.
[http://www.imore.com/this-is-tim-
transcript-q3-2015](http://www.imore.com/this-is-tim-transcript-q3-2015)
------
rizwan
This article is from July 8 (48 days ago). Anyone have any more recent
information?
~~~
daughart
This article in Fortune suggests Apple Watch is selling strongly in Best Buy
stores: [http://fortune.com/2015/08/25/best-buy-
apple/](http://fortune.com/2015/08/25/best-buy-apple/)
| {
"pile_set_name": "HackerNews"
} |
Mozy discontinues unlimited backup plan - big price increases for some users - yarone
I've been a MozyHome subscriber since May 2007. I use Mozy to store all of my home photos and videos - a total of 409 GB.<p>Today I received the following e-mail from Mozy, announcing that they have discontinued the "unlimited" plan ($4.95 for unlimited storage) that I am on and that I need to choose a new plan.<p>"Thanks for being a valued Mozy subscriber. For the first time since 2006, we’re adjusting the price of our MozyHome service and wanted to give you a heads up. As part of this change, we’re replacing our MozyHome Unlimited backup plan and introducing the following tiered storage plans:<p>50 GB for $5.99 per month (includes backup for 1 computer)
125 GB for $9.99 per month (includes backup for up to 3 computers)<p>You may add additional computers (up to 5 in total) or 20 GB increments of storage to either of the plans, each for a monthly cost of $2.00.<p>While this policy takes effect for new MozyHome customers starting today, your MozyHome Unlimited subscription is still valid for the duration of your current monthly term. In order to ensure uninterrupted service, you'll need to select a new renewal plan.<p>As the leader in online backup, we’re committed to continually providing the highest levels of service and protection that you’ve come to expect from us as well as delivering those innovations you’ve been asking for. For more information on the factors that led to this change, please read my note or visit our FAQ.<p>Be safe,
Harel Kodesh
President"<p>It looks like I would have to pay $9.99 (gets me 125GB) plus $30 (gets me 300GB) for a total of $39.99 per month. Is this a good deal? Should I switch to another "cloud" backup solution? Thoughts?
======
andrewjshults
Link to the Mozy announcement: <http://mozy.com/home/newplans>
For me the new pricing means that they are a no go (although I do appreciate
that my current 2 year subscription will continue on). I'm currently at about
500GB of stuff that I actually want backed up into the cloud (mostly photos
from DSLRs) and several more TB of stuff that be good to backup but I could
live without. With their new pricing scheme, I personally feel like I'd be
better off upgrading my dropbox account and putting more stuff in there +
buying more hard drives (and keeping them in multiple locations) for my
photos. Moving to another cloud backup provider would be an exercise in a lot
of uploading time to get 500GB up over a home connection.
~~~
yarone
I reached out to Dropbox customer service to see what they'd charge me for
500GB. I'll let you know what I hear.
~~~
yarone
The only thing Dropbox offered me was their team product: $795 for the year,
350GB. Additional 100GB packs, $200. So it would cost me $895 for the year, or
$75 per month.
------
joanou
AltDrive has secure versioned unlimited backup for $44.50/yr.
(<http://blog.altdrive.com/welcome-mozy-users>) Free two month trial. Giver
her a try. (<http://altdrive.com>)
------
privacyguru
I'd check out (www.carbonite.com) -- $54.95 Per Computer per year for
unlimited backup.
------
DrJosiah
Crashplan: backup among all of your machines for free (even multi-site), get
Crashplan+ for $50/year for unlimited cloud backups for one machine, or
$120/year for unlimited cloud backups for up to 10 machines.
------
amock
There's <http://backblaze.com> which is $50/year for unlimited backup.
~~~
budmang
FYI - we provide completely unlimited storage, unthrottled bandwidth, backup
all data by default, backup external drives, and can ship you a restore drive
as well.
$5/month or $50/year. We can do this based on our unique cloud storage which
Hacker News had a long thread about:
<http://news.ycombinator.com/item?id=797995>
We are also offering a 10% off discount for current Mozy switchers: "byemozy"
Gleb Budman CEO, Backblaze
------
dramsoft
Amazon charges 0.1$ per Gb impossible to go cheaper than that.
~~~
DrJosiah
I've got 300 gigs backed up in the cloud for <$5/month (Crashplan+). That
would run $30/month at Amazon.
| {
"pile_set_name": "HackerNews"
} |
Ask HN: How to short startups? - zxcvvcxz
Say I have a hunch that a particular over-hyped, but not publically-traded startup, is destined for failure. How can I profit from this prediction? Creative answers welcome :)
======
jetti
Simple, find somebody else that is willing to bet the take the opposite view
point and is willing to wager money. Basically, you are referring to pink
sheets and you could do it through some brokers but it is hard to find people
to actually go through with it.
------
billconan
There is an article about how to short uber
[https://medium.com/@avishbhama/how-to-short-uber-and-
other-p...](https://medium.com/@avishbhama/how-to-short-uber-and-other-
private-companies-7754b8fb7de1)
| {
"pile_set_name": "HackerNews"
} |
Some Microsofties say that women's brains make them less interstd in engineering - onetimemanytime
https://www.businessinsider.com/microsoft-employees-uproar-over-diversity-2019-4
======
neilv
The original qz.com article has more on the headline topic than the
businessinsider.com that quotes qz.com does.
[https://qz.com/1598345/microsoft-staff-are-openly-
questionin...](https://qz.com/1598345/microsoft-staff-are-openly-questioning-
the-value-of-diversity/)
------
neilv
I assume that some of these quotes are upset reactions to things that seem
unfair or dumb to the person saying them... _but_ quotes that are alleging
disproportionate genetic inferiority of some other gender/race/etc. groups for
their jobs... are really insensitive to all people from those groups.
And if they were later to say (as I assume will probably happen, for obvious
reasons) to one of those people of the groups, "I don't mean you; not all
<group> are inferior", that seems further offensive to me, because it's like
they're doubling down on insensitivity, rather than realizing their offense
and humbly backing down.
| {
"pile_set_name": "HackerNews"
} |
Why BuzzFeed Canada Is Unionizing - laurex
https://medium.com/@bfcaunion/if-you-read-this-statement-it-will-tell-you-why-buzzfeed-canada-is-unionizing-a636f3c301f4
======
aurizon
Now we will see the destructive effect, when well paid people use thuggery
tactics to try and force higher wages, for less work, AND pay union dues. Soon
the bell will toll for Buzzfeed Canada
| {
"pile_set_name": "HackerNews"
} |
Godel Escher Bach QR Code shadow cube - te_platt
http://www.thingiverse.com/thing:15232
======
iamwil
Alas, I wish I had thought of this. I made a replica of the cube on the cover
of GEB here:
<https://cubehero.com/physibles/iamwil/shadowblock>
It's actually not too hard to do with OpenSCAD or any other modeling tool that
allows you to do intersections. So I've tried other three letter acronyms:
<https://cubehero.com/physibles/iamwil/shadowblock/print>
For the QR Code Shadowblock in the OP, I wonder how he dealt with supporting
all the structures within, but not all combinations of pixels on each face
will work. Maybe he just played with it and rotated the QR codes to find a
combination that will work.
I have thought about a QR Code Quine, where the QU Code contains an OpenSCAD
file that is a model of the QR Code. However, I wasn't sure exactly how to
tackle that, since the QR Code decoder is non-trivial.
------
pronoiac
Just in case anyone doesn't get it, it's a reference to the cover for
Hofstadter's "Godel, Escher, Bach:"
<http://en.wikipedia.org/wiki/File:GEBcover.jpg>
~~~
paulkaplan
The single most important book I think I've ever read. I've never read
something that I kept coming back to year after year, reading a little farther
into it every time. If I was stranded on a desert island with only one book,
I'd bring this one. It would keep me busy for more than long enough.
~~~
kamaal
Absolutely. Especially because the whole book is about how things spring out
of nothingness.
~~~
paulkaplan
According to him that's what the books core idea seems to boil down to, but I
think I'd bring the book with me because of all the other things as well:
"fugues and canons, logic and truth, geometry, recursion, syntactic
structures, the nature of meaning, zen buddhism, paradoxes, brain and mind,
reductionism and holism, ant colonies, concepts and mental representations,
translation, computers and creativity, consciousness and free will, sometimes
even art and music of all things!" -preface to the twentieth anniversary
edition
------
biot
The only part of this that would be difficult is ensuring that there is no
single dark pixel which is surrounded by all white pixels. As the dark pixel
represents material and the white pixel is empty space, you'll need to use
thin supporting structures within the QR margin of error otherwise there
wouldn't be anything to hold the material in place. Do a Google Image search
for "letter stencil" for what I mean by thin supporting structures.
That small caveat aside, it's super easy to construct: start with a solid
block of material, take QR code 1, and from one face carve out the white
pixels all the way through, keeping any thin connector pieces as required.
Rotate to another face, do the same for QR code 2, rotate again, and do the
last face for QR code 3. The remaining structure is what you 3D print.
~~~
ctdonath
Did you even go to the link? First picture on the page obviously shows narrow
diagonal connector pieces as required to support weak or unsupported
components.
~~~
biot
You must have misread my comment. I stated that the connecting pieces are the
only hard part in generating such a cube, not that connecting pieces weren't
used in the cube shown.
The next time you feel someone is in error, consider presenting your argument
in a nicer tone. The use of "did you even" and "obviously" makes you seem like
a dick.
------
jgrahamc
This reminds me of a thing I keep not having the time to design and 3D print,
so I'm going to say it here so someone else can make it for me.
Platonic solid Matryoshka "dolls".
Essentially, I would like to have a sphere (admittedly not a Platonic solid)
which splits in half to reveal an icosahedron which splits in half to reveal a
dodecahedron and so on through octahedron, cube and tetrahedron. Making them
fit nicely one inside the other.
------
Sukotto
Note that QR codes cannot be read in mirror image, so only
3 of the 6 possible cube orientations cast a readable
shadow.
Well, now I can't stop thinking about QR code rotations. How big is the subset
of QR codes that are valid in more than one orientation? (some combination of
rotated, flipped, or mirrored). Treating the marks for position/alignment/etc
as a separate layer and flip/rotate/mirror the rest of the code.
What about the different sizes of code? Can it only be done with, say Version
4 and not Version 3 codes?
~~~
networked
>How big is the subset of QR codes that are valid in more than one
orientation?
Given the placement of the position and alignment markers in a valid QR code
it looks like the only symmetry it can have is reflection (mirror-image)
symmetry about its main diagonal (the line from the top-left to the bottom-
right) [1]. If you take any given QR code and replace the part of it that is
below the main diagonal with a mirror image of the part above it then in the
worst case you will lose 50% of the information contained in the code
(actually less since the pixels on the diagonal stay there no matter what).
Now, the content of a QR code generated with the heaviest error correction
settings can be recovered even if up 30% of its data is lost [2]. If you
generate a QR code where the part above the main diagonal is similar enough to
the one below it (meaning at least 50% - 30% = 20% of symmetrically located
pixels are the same color) then such a QR code should survive being made fully
symmetrical.
The above is a simplification, though, since, generally speaking, error
correction in QR codes operates on blocks and not whole codes. In practice it
also may or may not be possible to generate a sufficiently symmetrical code in
the first place, let alone one with the specific content you want.
[1] See <http://imgur.com/YMNIsgc>. The red line show the diagonal, the green
arrows point out pairs of symmetrical pixels.
[2] [http://archive.is/20120915/http://www.tec-
it.com/de/support/...](http://archive.is/20120915/http://www.tec-
it.com/de/support/knowbase/symbologies/qrcode/Default.aspx)
------
pud
Can someone help explain how exactly this works? It casts a shadow that is a
valid QR code? How does it cast a shadow? On what does it cast a shadow?
It looks awesome and someone clearly worked incredibly hard on it. I just want
to understand it better.
~~~
GuiA
It's meant to be 3D printed.
One you have that 3D printed cuboid in your possession, you point a
flashlight towards one face, have the opposite face face a white surface, and
scan the resulting shadow with a smartphone– and boom! It's quite insane.
~~~
samstave
The questions is, can any QR code be made to work or are you pretty limited in
the info represented by the QR code?
I don't understand how QR codes work well enough to know the answer.
~~~
biot
You can do this for any three sets of 1-bit images. There's nothing special
except for ensuring that you have thin connecting pieces so that any "island"
where material would otherwise be surrounded by empty space remains connected
to other pieces.
------
indrax
It looks like this is currently built for an infinitely distant light source.
The sun might work, but you'd need mirrors to get the 3-shadow effect.
Fortunately, it should be relatively easy to tweak the shape for light sources
at various distances. (though the easy way won't yield a cube.)
~~~
ctdonath
Text at link: _This is a complex image. To get a readable shadow your light
source will need to be pretty far away to get a flat pass through. Perhaps
someday I'll do a version with transformed geometry, matching specific close-
up point sources._
------
jasondenizac
This is the first thing I have ever wanted a 3D printer for.
~~~
zw123456
ditto, I was just about to post the same comment. I have been watching 3d
printing long enough. I read GEB a long time ago and it was the book that
convinced me to go into computer science.
------
dave1010uk
Note that QR codes cannot be read in mirror image
It should be simple to make a QR reader that also reads the image flipped
horizontally and/or vertically. That way reflections of QR codes could be read
too. Maybe some readers already do this. The use case ould be quite small
though.
~~~
morsch
One use case would be windows with a QR printed on them.
------
MCCOYPAULEY
Could this be printed with a 3D printer? I think that would be a fun thing to
have sitting on a desk.
~~~
unwind
That is the very thing it has been designed for, from the beginning and
through every step. The huge image on the linked-to site is of a 3D-printed
object. Also, the site (Thingieverse) is a widely-known repository for
3D-printable object designs.
So: yes.
| {
"pile_set_name": "HackerNews"
} |
The mystery of Kawasaki disease - MBCook
http://arstechnica.com/science/2015/06/the-mystery-of-kawasaki-disease/
======
carbocation
The consequences of Kawasaki - especially if undiagnosed - are severe.
Coronary artery ectasia, which infrequently persists, can lead to spontaneous
coronary thrombosis in otherwise young healthy adults. In other words, healthy
young adults can develop heart attacks as a consequence of this disease. This
is documented in the article, but I'll emphasize that it's something we see
(albeit rarely) in the real world.
------
K-Wall
Never expected to read an article about this on HN. I had Kawasaki's and was
extremely lucky that my doctor recognized it from another case they had with a
boy from the next town over.
------
jefe78
I suffered from this disease in Montreal, Canada at the age of 5. It came on
as Scarlet Fever. Eventually entire portions of my limbs were 'peeling'. The
skin on my tongue peeled towards the end - that was neat...
Nothing quite like being an early case for that particular city and having
doctors ask an 8 year old if they can photograph him...
Edit: What's really interesting is that a friend's cousin, only a few blocks
away from where we were living was apparently diagnosed with the same thing
only a few months prior.
~~~
ramgorur
I also suffered from this in Fukuoka at the age of 4, I also remember that
peeling stuff, really scary.
------
PhantomGremlin
When I read the article, I thought "surely this disease would have been on
House, M.D.". And it was:
[http://house.wikia.com/wiki/The_Confession](http://house.wikia.com/wiki/The_Confession)
| {
"pile_set_name": "HackerNews"
} |
Columbia Downed by Megalightning (2005) - mattnumbe
http://www.holoscience.com/wp/columbia-downed-by-megalightning/
======
mattnumbe
There are two reasons I posted this:
1\. One of the companies we started working with is named after megalightning
(ELVES-Emission of Light and Very Low Frequency perturbations due to
Electromagnetic Pulse Sources). I had never heard of megalightning before and
wondered why.
2\. There seems to be very little information about ELVES and wanted to know
if anyone had some insight on it.
| {
"pile_set_name": "HackerNews"
} |
Ask HN: How much do programming instructors make? - instructorq
Hi all-
Regular HN user here, made a throwaway account just in case my current or future employers ever google me. I'm applying for a part-time programming instructor position (at a place like General Assembly, App Academy, etc) and I was wondering how much these positions generally make, and whether I should attempt to negotiate salary like I would with a development job. I've googled around a bit, and I can't find any information on Glassdoor or elsewhere. Do any of you have experience w/ these kind of jobs?
Thanks!
======
rdouble
I worked with a well known group who paid their instructors $2500 to $4000 per
week long class. The classes cost the students $3500 to $4000. The salary
variance was due to seniority and whether or not the instructor was "famous"
in his niche. Clearly, if you can run the class yourself you are better off
than working with a group.
------
argonaut
A lot. If the program has been around for some time, competitive with
engineering salaries in SF (I would estimate 200k+).
Do the math. Number of students per class x classes per year x tuition x
percent of students that get jobs through each program's hiring network x $20k
(recruiting fee) and holy shit you have a cash cow.
Subtract rent, taxes, utilities (internet+electricity), and janitorial
services and you still tons of cash flow (before accounting for salaries).
It's like consulting: very lucrative and cash-flow positive, but very
difficult to scale.
Though I would imagine that part-timers don't make as much.
mjn's estimate is quite off the mark. This is not tutoring.
------
wikwocket
You should always negotiate your salary. It is in the company's interest to
hire you for as low as you will work for; counter this by attempting to get as
much as you can.
If Glassdoor/salary.com/payscale.com don't have any info, you could look for
people in that profession on LinkedIn, and try to ask them for more info. If
you phrase it like you are new to the industry and looking for guidance from a
pro like them, some will probably be willing to "mentor" you, including on
expected salary ranges.
------
mjn
Is it hourly? As an extremely general baseline, TutorSpree found the average
rate for tutors in SF and NYC going through them to be ~$55/hr last year:
[http://blog.tutorspree.com/post/15257341578/state-of-
tutorin...](http://blog.tutorspree.com/post/15257341578/state-of-tutoring)
That's not broken down by areas, though, and programming tutors are probably
higher.
------
Felix21
We could use someone like you at www.codetuts.co
let me know if you're interested.
Email felix(dot)oginni (at) outlook(dot)com
| {
"pile_set_name": "HackerNews"
} |
H.264 Licensing Terms - prakash
http://www.streamingmedia.com/r/printerfriendly.asp?id=10900
======
ScottWhigham
Microsoft OLE DB Provider for SQL Server error '80040e09'
UPDATE permission denied on object 'REPORT', database 'StreamingMedia', owner
'dbo'.
| {
"pile_set_name": "HackerNews"
} |
CSI:Internet - PDF Timebomb - crazyjimbo
http://www.h-online.com/security/features/CSI-Internet-PDF-timebomb-1038864.html
======
datasink
Looks like a pretty well conducted spear phishing attack. If the exploit code
hadn't crashed Acrobat Reader, chances are the originating attacker would have
a nice flow of 0-day exploits from this security researcher.
------
dctoedt
Interesting article; I wonder if it's been hacked itself? The text of the
article seems to finish at page 3, even though the page-count links at the
bottom of each page show 4 pages. I clicked on the "Next" link at the bottom
of page 3, and Avast! detected a threat. I didn't keep going.
~~~
Semiapies
The fourth page is a commented listing of the exploit. Supposedly, it can
trigger some antivirus programs.
------
harshpotatoes
So why does adobe reader allow for the execution of javascript from pdf files?
~~~
datasink
[http://www.adobe.com/devnet/acrobat/pdfs/js_developer_guide....](http://www.adobe.com/devnet/acrobat/pdfs/js_developer_guide.pdf)
It looks like the major use case is adding functionality to interactive forms.
For example, you could create a PDF that allows you to submit to a SOAP
service upon clicking a submit button. You can also apparently interact with
database services using ODBC on Windows.
Why you would opt for this vs. a web form, given that both approaches would
require a coder, I really can't imagine.
~~~
harshpotatoes
Ah, I thought it might be for the forms. Still... it seems a little extreme to
have fully executable code in a file which is only being read. :sigh: if only
pdfs weren't so scary.
| {
"pile_set_name": "HackerNews"
} |
Apple's App Store hit by malware attack in China - t23
http://www.bbc.com/news/technology-34311203
======
dang
[https://news.ycombinator.com/item?id=10243151](https://news.ycombinator.com/item?id=10243151)
| {
"pile_set_name": "HackerNews"
} |
IBM sues Microsoft’s new chief diversity officer over non-compete agreement - MikusR
https://www.geekwire.com/2018/ibm-sues-microsofts-new-chief-diversity-officer-non-compete-agreement/
======
Mononokay
>Microsoft said in a statement, “We’re pleased that Lindsey-Rae decided to
join Microsoft, both to continue to grow in her career and so she, her husband
and their three young children could be closer to her parents and extended
family on the West Coast. We have no interest in any of IBM’s confidential
information.”
>In a declaration filed with the court, McIntyre says, “For diversity work to
be effective, it has to be specific and customized to the company and
workforce at issue. My work at Microsoft must be centered on Microsoft’s
corporate culture and its internal goals as an organization, which are
entirely distinct from IBM’s culture and goals. Similarly, inclusion focuses
on what it feels like to belong and is entirely focused on management and
culture. Therefore, while the work that IBM (or any other technology company)
does on these issues may be interesting, it is not practically useful in my
role at Microsoft.”
How exactly are Microsoft and Mrs. McIntyre trying to justify this? Both of
their statements are effectively, "Oh don't worry, we have no interest in IBM
secrets, and aren't competing with our direct competitor, no way no how."
>"IBM surprisingly seeks a draconian temporary restraining order and
preliminary injunction to prevent McIntyre from working -- for an entire year,
in any position, anywhere in the world, for any company IBM deems to be a
‘competitor’ in any dimension"
This would make sense, if Microsoft and IBM weren't directly competing in
multiple areas. See:
[https://www.ibm.com/cloud/](https://www.ibm.com/cloud/) vs
[http://azure.microsoft.com/](http://azure.microsoft.com/)
[https://www.ibm.com/watson/](https://www.ibm.com/watson/) vs
[https://www.microsoft.com/en-
us/ai/default.aspx](https://www.microsoft.com/en-us/ai/default.aspx)
And in a fair deal of their open source projects:
[https://github.com/ibm](https://github.com/ibm) vs
[https://github.com/Microsoft](https://github.com/Microsoft)
I personally think Non-Compete Agreements generally aren't reasonable, but she
agreed to it. The case is black and white.
| {
"pile_set_name": "HackerNews"
} |
Hiring Your First Employee - jason_tko
http://blog.makeleaps.com/2010/07/hiring-your-first-employee-for-your-service-business/
======
popschedule
At what point does one go from the feeling that they have to do everything
themselves to make sure it's right to actually taking the leap of faith to
hiring someone. I feel like I am constantly bottle necking growth, but it gets
scary. What experiences have you guys had with this? What does it feel like to
hire your first employee?
~~~
prawn
"What does it feel like to hire your first employee?"
It's terrifying. Not just because you're changing something you're used to and
giving up control, but because you are becoming somewhat responsible for
someone's livelihood - they are literally banking on you to help them live,
eat, support family, etc. If you run out of work, what's going to pay their
rent?
I started a web dev studio in '98 with a friend. After 6-7 years, he moved to
London, wanting to work there, and I was a sole trader, using a few
freelancers.
Today, I have a full-timer, a 0.7ish (who cranks out stuff fast enough to be
considered a full-timer) and take on paid trainees from time to time. I pay
myself much less than I did when I was a sole trader but it doesn't really
bother me - I get a lot out of providing fun opportunities for two young
employees.
But before my first hire, I ummed and aahed for a long, long time. I made
half-hearted efforts to find someone and usually bailed before committing. In
the end, I gave a young, less-than-qualified but fast-learning, good-hearted
kid a trial and he did well. I can't even remember reading his resumé but we
met at a café to talk things over, got on fine and I can remember that he
could spell "definitely" in his emails. Sounds trivial, but the HN post the
other week about "when in doubt, always hire the better writer" really
resonated with me - when you're letting someone loose contacting the clients
you've nurtured for 5-10 years, you don't want them embarrassing you. You need
to trust them and it's easier if they show care and can spell.
I've never regretted that hiring, nor my second one either. They have jobs for
as long as I can keep the money coming in to pay them. Either my character-
barometer is sound or I got really lucky.
Terrifying to begin with, but rewarding later.
The only problem now is that I'm still the bottleneck. At 3-5 people, we're
big enough to need a production manager, but too small to be able to afford
one. All the worst parts of small business magnify too - even with an
accountant and bookkeeper, there are more boring and annoying parts to deal
with than ever, and I have sacrificed salary to bring employees on board. But
it's tough to jump from sole trader to a ten-person team, so perhaps this is
just a rough intermediary step.
A few keys:
- start them on a trial
- pick someone who fits your working culture (we are all very social in this shared office) and is a good personality fit
- pick the person that can spell "definitely"
- you might need to make sacrifices to take that next step
- don't worry about running out of work to keep them busy, just roll the dice. As my friend is wont to say: No balls, no babies.
~~~
popschedule
"no balls no babies" haha, love that. Thanks for the great advice prawn. Yea,
definitely a leap of faith.
~~~
prawn
Hey, you can spell "definitely" --> hired! :P
------
mbenjaminsmith
A point I would make about 'Vision Over Job Description':
I think it's vital to also be open about the need for a generalist. If all you
do is give someone a title (plus vision), there's going to be enough of a role
associated with that title to create a set of expectations. It's easy to put
someone in a position early on where they think, 'an x doesn't do y, what's
going on?'
Even for a low-level employee, I would consider doing salary plus equity if
they're the first on board. I've seen it work before.
Another point I think is critical is if you expect someone to come on board
and wear all hats, you'd better make sure you're willing to do it as well. If
you're working all hours to make your business grow it will be easier for your
employees to swallow.
If they think they're working more than you they'll leave and that's hard to
recover from, at least in the sort term. Losing a team member hurts everyone's
morale, especially your own.
------
ahoyhere
We found our intern with the intention to hire if we found a good fit. (And he
found us by my comments here on HN!) I described somebody who was interested
in wearing many hats from admin to programmer, with at least some
programming/Ruby experience, and voila!
We lucked out on the first try and we will be employing him as soon as we can
get the paperwork together.
I highly recommend this type of approach for junior devs, do-it-all peeps, and
even admins.
Also, from my hiring days in corporations, my more general recommendations:
* hire on attitude, passion and team fit, not current skill set (unless you are totally crunched)
* ask them what they read on their own time
* figure out why they do what they do (or do what the job description says)
A smart, motivated, passionate, conscientious person with not-quite-enough
experience will quickly bring herself/himself up to speed. On the other hand,
a person with the exact skillset you need may be unbearable.
As for the money, well, we're a 2-person company. We have not just our SaaS
product, but live training courses, etc. Yes, it's kind of scary to employ
somebody, but we figured out that, worst case, we can just do one training
course a month to cover the monthly salary of our new addiction. That's a good
trade.
~~~
grammaton
> hire on attitude, passion and team fit, not current skill set (unless you
> are totally crunched)
I wish everyone in a position to hire thought like this. The overall quality
of developers in the industry would improve sharply, for one. Programmers as a
whole might be a less bitter lot, as well.
Kudos to you sir.
~~~
ardit33
yeah, but attitude alone doesn't build products. If we are talking for just
some simple web app, then that is fine, but if you are doing anything that is
technically challenging, you better have somebody experienced on the first 2-3
employees you hire.
You need both energy/passion, but also somebody that is good and has
experienced a lot, both successes and failures.
One thing I noticed really good engineers with experience tend to be a bit
more pessimistic/opinionated by nature, and also more pragmatic. They can
anticipate problems down the road (where a junior engineer would think
everything is jolly), while avoid over-engineering. Junior programmers are
more likely to either over or under engineer; brush potential problems as
"insignificant", or grossly underestimate what it takes to get something done.
Most of us have been there at some point. But also a junior engineer might
bring your fresh energy to the mix.
But remember, really good engineers, with experience,and with passion and
great attitudes, are hard to find. Mainly b/c they have no problem to find a
job.
| {
"pile_set_name": "HackerNews"
} |
Universities Slash Budgets Nationwide - chailatte
http://abcnews.go.com/OnCampus/universities-slash-budgets-nationwide/story?id=13571408
======
phlux
Id be willing to bet C level salaries were either steady or went up.
| {
"pile_set_name": "HackerNews"
} |
Ask HN: What are your greatest method for learning coding? - algebrax
I am noob and 28 years old. I don't want to waste my time.
======
machinedgod
Build a nethack/rogue clone. Works every time, for any language.
~~~
algebrax
What if i publish these clone projects live?
~~~
machinedgod
what if?
------
martinni
Side projects.
~~~
algebrax
Any idea for side projects?
~~~
GFischer
Any kind of thing that you can apply to your personal life, or a family member
or friend. Something you care enough about that you'll get excited of doing
it.
Off the top of my head, a tool for measuring your favorite sport or activity,
for example (say, a website that sends you info about your team's schedule or
scores).
Or something for your schedule. Or a weight tracker. Something to organize a
collection (music, movies, whatever).
| {
"pile_set_name": "HackerNews"
} |
Cap'n Proto v0.3: Python support, better tools, other improvements - kentonv
http://kentonv.github.io/capnproto/news/2013-09-04-capnproto-0.3-python-tools-features.html
======
srollyson
Hi, Kenton.
First: thanks for your work on Protocol Buffers. I've used it fairly
extensively for RPC communications between C++/Java clients and a Java
service. It made things so much easier to get native objects in each language
using a well-defined protocol.
One thing that bugged me about Protobuf is that it provided a skeletal
mechanism for RPC (e.g. RpcController/RpcChannel) but later deprecated the use
of that mechanism in favor of code-generating plugins. Since Cap'n Proto is
billed as an "RPC system", do you have plans to include a more fleshed-out
version of RPC than was provided in Protocol buffers? Having abstract classes
for event-handling and transport mechanisms is a good idea for extensibility
but it sure would make it easier for your users if there was at least one
default implementation of each.
I imagine that Google has standard implementations of these things internally
but balked at trying to support them for multiple languages as an open source
project.
~~~
kentonv
Yes, in fact, the next release of Cap'n Proto (v0.4) is slated to include RPC
support. There are some hints on what it might look like in the docs already:
[http://kentonv.github.io/capnproto/rpc.html](http://kentonv.github.io/capnproto/rpc.html)
[http://kentonv.github.io/capnproto/language.html#interfaces](http://kentonv.github.io/capnproto/language.html#interfaces)
The reason Google never released an RPC system together with protobufs is
because Google's RPC implementation simply had too many dependencies on other
Google infrastructure, and wasn't appropriate for use outside of Google
datacenters. There were a few attempts to untangle the mess and produce
something that could be released, but it never happened.
The public release had support for generating generic stubs, as you mentioned,
but it was later decided that these stubs were actually a poor basis for
implementing an RPC system. In their attempt to be generic, their interface
ended up being rather awkward. We later decided that it made more sense to
support code generator plugins, so that someone implementing an RPC system
could provide a plugin that generates code ideal for that particular system.
The generic interfaces were then deprecated.
Cap'n Proto also supports code generation plugins. But, as I said, we will
soon also have an "official" RPC layer as well -- and it will hopefully be
somewhat plugable itself, so that you can use a different underlying transport
with the same generated interface code. Anyway, this will all become clearer
with the next release, so stay tuned!
~~~
srollyson
I'm not going to lie; it took me a little while to wrap my head around those
stubs before implementing a TCP transport and semaphore triggers to unblock
outstanding RPC function calls. However, it seemed much easier to do that than
write a plugin for protoc to generate code that did roughly the same thing.
I'm currently considering RPC implementations for a personal project I'm
working on. Right now I may end up trying Thrift since it seems to support RPC
out of the box, but my ultimate goal is to have a WebSockets transport which
Thrift doesn't provide. I may end up contributing to Cap'n Proto if it looks
like the effort required to get RPC up and running has at least some parity
with the effort required to extend Thrift for my needs.
It's clear from your planned use of futures and shared memory that your goal
for Cap'n Proto is to make it the go-to library for communication in parallel
computing. I'm definitely eager to see Cap'n Proto succeed in that endeavor.
JSON is great for readability but it really isn't going to cut the cake when
efficiency matters!
~~~
kentonv
I look forward to hearing from you, should you decide to contribute. :) A web
socket transport for Cap'n Proto would make a lot of sense, particularly if
paired with a Javascript implementation, which one or two people have claimed
they might create. I expect it will be easy to hook this in as a transport
without disturbing much of the RPC implementation.
~~~
btilly
One random idea that just hit me if you're thinking about RPC layers anyways.
Make sure that Cap'n Proto plays well with 0MQ. They probably do already, but
a published example or two demonstrating it would not be a bad thing.
~~~
kentonv
You can certainly send Cap'n Proto messages over 0MQ (or nanomsg) pretty
easily -- Cap'n Proto gives you bytes, 0MQ takes bytes. Done deal.
However, supporting Cap'n Proto's planned RPC system on top of 0MQ may not
work so well. The thing is, 0MQ implements specific interaction patterns, such
as request/response, publish/subscribe, etc. Meanwhile, Cap'n Proto RPC is
based on a different, more fundamental object-oriented model that doesn't fit
into any of these patterns. A Cap'n Proto connection does not have a defined
requester or responder -- both sides may hold any number of references to
objects living on the other side, to which they can make requests at any time.
So it fundamentally doesn't fit into the req/rep model, much less things like
pub/sub. On the other hand, you can potentially build a pub/sub system _on top
of_ Cap'n Proto's model (as well as, trivially, a req/rep system).
I discussed this a bit on the mailing list:
[https://groups.google.com/d/msg/capnproto/JYwBWX9eNqw/im5r_E...](https://groups.google.com/d/msg/capnproto/JYwBWX9eNqw/im5r_E-
vlyIJ)
At least, this is my understanding based on what I've managed to read so far
of 0MQ's docs. I intend to investigate further, because it would be great to
reuse existing work where it makes sense, but at the moment it isn't looking
like a good fit. If I've missed something, definitely do let me know.
~~~
btilly
The killer feature that I like for 0MQ is that you can support message passing
asynchronously, even when the other side is not currently up. For instance in
a request/response pattern, one side might go away, get restarted,
reinitialize, and then they carry on as if there wasn't a period in the middle
where there was no connection. This kind of robust handling of network
interruptions is very convenient for many use cases.
However what you describe isn't necessarily going to fit into that. The #1
thing that your description makes me wonder about is whether RPCs are going to
be synchronous or asynchronous. So, for instance, if you hand me a data
structure with a list objects that are references to data that I want to have,
and I decide that I need 10 of them, do I have to pay for the overhead of 10
round trips, or can I say, "I need these 10" and get them all at once?
~~~
kentonv
> _support message passing asynchronously, even when the other side is not
> currently up._
That's probably something that could be implemented in Cap'n Proto as some
sort of a persistent transport layer. But since the connections are stateful,
it does require that when one end goes down, it comes back up with its state
still intact. I have a lot of ideas for how to make this possible it big
systems but it's a long way off.
Of course, in the simple case where you _do_ have a defined client and server
and the server is only exporting one stateless global service object that the
client is using -- which is roughly what 0mq req/rep sockets are for -- then
it should be no problem to support this.
> _whether RPCs are going to be synchronous or asynchronous_
The interface will be asynchronous based on E-style promises (similar to
futures). In fact, say you call an RPC which returns a remote object
reference, and you immediately want to call another method on that reference.
With Cap'n Proto's approach, you will be able to do this whole interaction in
_one_ round trip instead of two. This is called "Promise Pipelining". There's
a bit (just a bit) more detail here:
[http://kentonv.github.io/capnproto/rpc.html](http://kentonv.github.io/capnproto/rpc.html)
------
zheng
The claims on this site are pretty impressive, but I have close to zero
knowledge of the history here, so can someone comment on how many grains of
salt this should be taken with? Otherwise, this looks pretty cool. Something
that beats protobufs in overall speed could be really helpful depending on the
application.
~~~
haberman
Just to give a bit of counterpoint, here are some trade-offs that Capn Proto
makes compared with protobufs. (Full disclosure: I work at Google and know
Kenton from his time here; I have my own protobuf library that I've worked on
for several years). I'm sure Kenton will correct me if I get anything wrong.
:)
Capn Proto's key design characteristic is to use the same encoding on-the-wire
as in-memory. Protobufs have a wire format that looks something like:
[field number 3][value for field 3]
[field number 7][value for field 7]
etc.
The fieldnum/value pairs can come in any order, and may define as many or as
few of the declared fields as are present. This serialization format doesn't
work for in-memory usage because for general programming you need O(1) access
to each value, so protobufs have a "parse" step that unpacks this into a C++
class where each field has its own member.
Protobufs are heavily optimized so this parsing is fast, but it's still a very
noticeable cost in high-volume systems. So Capn Proto defines its wire format
such that it _also_ has O(1) access to arbitrary fields. This makes it
suitable as an in-memory format also.
While this avoids a parsing step, it also means that your wire format has to
preserve the empty spaces for fields that aren't present. So to get the
"infinitely faster" advantage, you have to accept this cost. For dense
messages, this can actually be smaller than the comparable protobuf because
you don't have to encode the field numbers. But for very sparse messages, this
can be arbitrarily larger.
As Kenton points out on
[http://kentonv.github.io/capnproto/encoding.html](http://kentonv.github.io/capnproto/encoding.html)
, lots of zeros compress really well, so even sparse messages can become
really small by compressing them. To do this you lose "infinitely faster", but
according to Kenton this is still faster than protobufs.
In both cases though, the tight coupling between the (uncompressed) wire
format and the in-memory format imposes certain things on your application
with regards to memory management and the mutation patterns the struct will
allow. For example, it appears that the in-memory format was not sufficiently
flexible for Python to wrap it directly, so the Python extension does in fact
have a parse step.
Other cases where you could need a parse/serialize step anyway: if you want to
put the wire data into a specialized container like a map or set (or your own
custom data classes), or if the supported built-in mutation patterns are not
flexible enough for you (for example, the Capn Proto "List" type appears to
have limitations on how and when a list can grow in size).
It's very cool work, but I don't believe it obsoletes Protocol Buffers. I'm
actually interested in making the two interoperate, along with JSON -- these
key/value technologies are so similar in concept and usage that I think it's
unfortunate they don't interoperate better.
~~~
kentonv
Generally a fair analysis. A few comments/corrections:
> _For example, it appears that the in-memory format was not sufficiently
> flexible for Python to wrap it directly, so the Python extension does in
> fact have a parse step._
This is not correct. The Python wrapper directly wraps the C++ interface. You
might be confused by Jason's claim that "The INFINITY TIMES faster part isn't
so true for python", but this was apparently meant as a joke.
It is true, though, that the constraints of arena-style allocation (which
Cap'n Proto necessarily must use to be truly zero-copy) mean that working with
Cap'n Proto types is not quite as convenient as protobufs, although most users
won't notice much of a difference. Lists not being dynamically resizable is
the biggest sore point, though most use cases are better off not relying on
dynamic resizing (it's slow), and the use cases that really do need it can get
around the problem using orphans (build an std::vector<Orphan<T>>, then
compile that into a List<T> when you're done).
OTOH, over the years, many people have requested the ability to use arena
allocation with Protobufs due to the speed benefits, especially with Protobufs
being rather heap-hungry. I always had to tell them "It would require such a
massive redesign that it's not feasible."
And yes, there is the trade-off of padding on the wire. You have to decide
whether your use case is more limited by bandwidth or CPU. With Cap'n Proto
you get to choose between packing (removing the zeros, at the cost of a non-
free encode/decode step) and not packing (infinitely-fast encode/decode,
larger messages). For intra-datacenter traffic you'd probably send raw,
whereas for cross-internet you'd pack. Protobufs essentially always packs
without giving you a choice. And because it generates unique packing code for
every type you define (rather than use a single, tight implementation that
operates on arbitrary input bytes), Protobuf "packing" tends to be slower.
~~~
haberman
Thanks for the correction on the Python point.
> OTOH, over the years, many people have requested the ability to use arena
> allocation with Protobufs due to the speed benefits, especially with
> Protobufs being rather heap-hungry. I always had to tell them "It would
> require such a massive redesign that it's not feasible."
Yes totally, I agree that arena allocation is great. I think we both agree on
this point, though we've taken two different paths in attempting to solve it.
Your approach is to say that arena allocation can be made pretty convenient,
and sparse messages can compress really well, so let's design a message format
that is amenable to arena allocation and then implement a system that uses
this format both on-the-wire and in memory.
My approach is to say that we can solve this (and many other related problems)
by decoupling wire formats from in-memory formats, and having the two
interoperate through parsers that implement a common visitor-like interface.
Then a single parser (which has been optimized to hell) can populate any kind
of in-memory format, or stream its output to some other wire format. Of course
this will never beat a no-parser design in speed, but the world will never
have all its data in one single format.
I think of these two approaches as totally complimentary; to me Capn Proto is
simply another key/value serialization format with a particular set of nice
properties, and I want it to be easy to convert between that and other
formats.
Since your approach is much more focused, you have been able to turn out
usable results orders of magnitude faster than I have. I'm spending time
implementing all of the various protobuf features and edge cases that have
accumulated over the years, while simultaneously refining my visitor interface
to be able to accommodate them while remaining performance-competitive with
the existing protobuf implementation (and not getting too complex). As much as
I believe in what I'm doing, I do envy how you have freed yourself from
backward compatibility concerns and turned out useful work so quickly.
~~~
kentonv
It's more like I started from "Let's design a message format that can be
passed through shared memory or mmap()ed with literally zero copies", and then
arena allocation was a natural requirement. :)
> _Since your approach is much more focused, you have been able to turn out
> usable results orders of magnitude faster than I have._
To be fair, the fact that I'm working on it full-time -- and with no review,
approval, or other management constraints of any kind -- helps a lot. :) (Down
side is, no income...)
------
bsimpson
The Python implementation is a wrapper around a C++ module, so it's probably
not practical to use on AppEngine.
~~~
kentonv
Yep, that is a big trade-off. There's room for someone to write a pure-Python
implementation as well, to fill that niche. You could probably get a lot of
the way using Python's `struct` module. But it would be slower.
| {
"pile_set_name": "HackerNews"
} |
OpenBSD LDAPD Portable for Ubuntu 16.04 - notg963
https://github.com/harishanand95/openbsd-ldapd-portable
======
notg963
A portable ubuntu version of the ldapd in OpenBSD. This was tested in ubuntu
16.04
| {
"pile_set_name": "HackerNews"
} |
Future of Internet Search: Mobile version - troystribling
http://petitinvention.wordpress.com/2008/02/10/future-of-internet-search-mobile-version/
======
rgrieselhuber
I've seen this post before but this is definitely cool if true.
~~~
Herring
Cool, but in a superficial way. Like the computers we use today would be
futuristic by ~8 yrs ago, but we don't give them a second thought.
| {
"pile_set_name": "HackerNews"
} |
Libraries: Where the world’s memory is stored (2018) - Tomte
http://www.bbc.com/culture/story/20180704-libraries-where-the-worlds-memory-is-stored
======
throw0101a
Umberto Eco on memory at the then-newly opened Bibliotheca Alexandrina:
> _WE HAVE THREE TYPES OF MEMORY. The first one is organic, which is the
> memory made of flesh and blood and the one administrated by our brain. The
> second is mineral, and in this sense mankind has known two kinds of mineral
> memory: millennia ago, this was the memory represented by clay tablets and
> obelisks, pretty well known in this country, on which people carved their
> texts. However, this second type is also the electronic memory of today 's
> computers, based upon silicon. We have also known another kind of memory,
> the vegetal one, the one represented by the first papyruses, again well
> known in this country, and then on books, made of paper. Let me disregard
> the fact that at a certain moment the vellum of the first codices were of an
> organic origin, and the fact that the first paper was made with rugs and not
> with wood. Let me speak for the sake of simplicity of vegetal memory in
> order to designate books._
* [http://www.umbertoeco.com/en/bibliotheca-alexandrina-2003.ht...](http://www.umbertoeco.com/en/bibliotheca-alexandrina-2003.html)
* [https://en.wikipedia.org/wiki/Bibliotheca_Alexandrina](https://en.wikipedia.org/wiki/Bibliotheca_Alexandrina)
He himself had quite the collection as well:
* [http://www.openculture.com/2017/03/watch-umberto-eco-walk-th...](http://www.openculture.com/2017/03/watch-umberto-eco-walk-through-his-immense-private-library.html)
~~~
lsh
sounds like Umberto Eco is getting lost in his own definitions. A simple
analog/digital distinction works just as well.
If you're interested there is a really excellent book on permanent digital
memory called "Delete"
[https://www.bookdepository.com/Delete-Viktor-Mayer-
Schonberg...](https://www.bookdepository.com/Delete-Viktor-Mayer-
Schonberger/9780691150369)
------
wolfgke
A lot of the world's memory is also stored in shadow libraries such as Library
Genesis and sci-hub.
------
vr46
Pretty pictures but perhaps too much focus on historical art and religion and
not enough on working, utilitarian libraries?
| {
"pile_set_name": "HackerNews"
} |
Star Wars Visual Effects, from AT-ATs to Tauntauns - hoggle
https://www.youtube.com/watch?v=mIlYk7KQe-s
======
hoggle
Even though I've got a keen interest in computer graphics I've always found
well-done live-action special effects to be more engaging than digital
effects. There are movies who don't abuse the seemingly limitless power of
computing but in my opinion there are surprisingly few.
Good examples where analog > digital: all the Ray Harryhausen movies, Alien,
Aliens, Blade Runner, Terminator, Predator...
| {
"pile_set_name": "HackerNews"
} |
Tips for Better Deep Learning Models - lauradhamilton
http://www.lauradhamilton.com/10-tips-for-better-deep-learning-models
======
gamegoblin
A note on dropout:
If your layer size is relatively small (not hundreds or thousands of nodes),
dropout is usually detrimental and a more traditional regularization method
such as weight-decay is superior.
For the size networks Hinton et al are playing with nowadays (with thousands
of nodes in a layer), dropout is good, though.
~~~
agibsonccc
I've found a combination of the 2 to be great. Most deep networks (even just
the feed forward variety) tend to generalize better with mini batch samples of
random drop out on multiple epochs. This is true of both images and word
vector representations I've worked with.
~~~
gamegoblin
I've found that with a large enough network, using the two together is good,
but as your network grows smaller and you lose redundancy, dropout starts to
hurt you when compared with using weight-decay alone.
In huge networks in which you have a lot of non-independent feature detectors,
your network can tolerate to have ~50% of them dropped out and then improves
when you use them all at once, but in small networks when you have a mostly
independent features (at least in some layer), using dropout can cause the
feature detectors to trash a fail to properly stabilize.
Consider a 32-16-10 feedforward network with binary stochastic units. If all
10 output bits are independent of each other, and you apply dropout to the
hidden layer, your expected number of nodes in 8, so you lose information
(since the output bits are independent of each other) without any hope of
getting it back.
~~~
agibsonccc
Definitely agreed. The networks I'm typically dealing with are bigger. I would
definitely say the feature space needs to be large enough to get good results.
That being said, most problems now a days (at least for my customers are
bigger numbers of params anyways)
------
vundervul
Who is Arno Candel and why should we pay attention to his tips on training
neural networks? Anyone who suggests grid search for metaparameter tuning is
out of touch with the consensus among experts in deep learning. A lot of
people are coming out of the woodwork and presenting themselves as experts in
this exciting area because it has had so much success recently, but most of
them seem to be beginners. Having lots of beginners learning is fine and
healthy, but a lot of these people act as if they are experts.
~~~
fredmonroe
his linkedin profile looks pretty legit to me.
[http://www.linkedin.com/in/candel](http://www.linkedin.com/in/candel) I
wouldn't want to get into a ML dick measuring contest with him anyway. H20
looks awesome too.
I think you are misinterpreting what he is saying about grid search. The grid
search is just to narrow the field of parameters initially, he doesn't say how
he would proceed after that point.
Just curious, what do you consider the state of the art? A Bayesian
optimization? Wouldn't a grid search to start be like a uniform prior?
The rest of his suggestions looked on point to me, did you see anything else
you would differ with? (i ask sincerely for my own education).
~~~
vundervul
Bayesian optimization > random search > grid search
Grid search is nothing like a uniform prior since you would never get a grid
search-like set of test points in a sample from a uniform prior.
I didn't really want to write a list of criticism for what is presumably a
smart and earnest gentleman and the similarly smart and earnest woman who
summarized the tips from his talk, but here goes:
The H2O architecture looks like a great way to get a marginal benefit from
lots of computers and is not something that actually solves the
parallelization problem well at all.
Using reconstruction error of an autoencoder for anomaly detection is wrong
and dangerous so it is a bad example to use in a talk.
Adadelta isn't necessary and great results can be obtained with much simpler
techniques. It is a perfectly good thing to use, but it isn't a great tip in
my mind. This isn't something I would put on a list of tips.
In general, the list of tips doesn't just doesn't seem very helpful.
~~~
fredmonroe
I appreciate you taking the time to give more detailed criticism, I learned
from it - thank you
------
agibsonccc
I would just like to link to my comments from before for people who maybe
curious:
[https://news.ycombinator.com/item?id=7803101](https://news.ycombinator.com/item?id=7803101)
I will also add that looking in to hessian free for training over conjugate
gradient/LBFGS/SGD for feed forward nets has proven to be amazing[1].
Recursive nets I'm still playing with yet, but based on the work by socher,
they used LBFGS just fine.
[1]:
[http://www.cs.toronto.edu/~rkiros/papers/shf13.pdf](http://www.cs.toronto.edu/~rkiros/papers/shf13.pdf)
[2]: [http://socher.org/](http://socher.org/)
------
prajit
A question about the actual slides: why don't they use unsupervised
pretraining (i.e. Sparse Autoencoder) for predicting MNIST? Is it just to show
that they don't need pretraining to achieve good results or is there something
deeper?
~~~
colincsl
I've only been watching from the Deep Learning sidelines -- but I believe
people have steered away from pretraining over the past year or two. I think
on practical datasets it doesn't seem to help.
------
TrainedMonkey
Direct link to slides: [http://www.slideshare.net/0xdata/h2o-distributed-deep-
learni...](http://www.slideshare.net/0xdata/h2o-distributed-deep-learning-by-
arno-candel-071614)
------
ivan_ah
direct link to slides anyone?
~~~
kdavis
[http://www.slideshare.net/mobile/0xdata/h2o-distributed-
deep...](http://www.slideshare.net/mobile/0xdata/h2o-distributed-deep-
learning-by-arno-candel-071614)
| {
"pile_set_name": "HackerNews"
} |
To Track Coronavirus, Israel Moves to Tap Secret Trove of Cellphone Data - jbegley
https://www.nytimes.com/2020/03/16/world/middleeast/israel-coronavirus-cellphone-tracking.html
======
raxxorrax
Yeah, sure, because of the virus.
~~~
beagle3
Israel is taking the quarantine seriously, and arrests people for breaking it.
I suspect they know if they do "parallel construction" a-la the US it won't
stand, so they're shining the light on the methods they'll surely use (whether
authorized or not) to figure things out.
And of course, get everyone used to the idea, which will make life
significantly easier for them once the Corona situation is long forgotten.
~~~
raxxorrax
Easier for the Israeli government? They have issues with their voters trust as
a lot of other countries right now. I doubt that will be very helpful.
------
0x4477
No, no, believe us, we're tracking and spying on you for your own good. Trust
us.
------
fortran77
I'm in Tel Aviv right now. The Israelis are acting very civilly, helping one
another, and are prepared. Don't forget, because of our neighbor problem,
everyone has ventilators/gas masks, and shelters with provisions! Nearly
everyone has served in the military. It's a very well-prepared nation.
| {
"pile_set_name": "HackerNews"
} |
Should Justin Bieber Invest In Your Enterprise Solution? - nikunjk
http://www.fastcompany.com/3001484/should-justin-bieber-invest-your-enterprise-solution
======
intev
Link bait article. Doesn't provide anything of value.
"Is Kim Kardashian really the new Reid Hoffman?"
Seriously?
| {
"pile_set_name": "HackerNews"
} |
Painting as a Pastime by Winston Churchill (1948) - craigcannon
https://gutenberg.ca/ebooks/churchillws-paintingasapastime/churchillws-paintingasapastime-00-h-dir/churchillws-paintingasapastime-00-h.html
======
mbroncano
Reading this, it comes to mind one of the most unknown episodes of Churchill’s
life is the Bengal famine of 1943 [1], in which he was personally responsible
for the death of at least two million Indian. I guess that painting and
writing wasn’t enough of a past time. Gallipoli wasn’t really something to
write letters home about, you just need to read something mildly objective to
realize the kind of sick person this man was.
The point I’m trying to make is, History is written by winners. In most
contexts, this man would be nothing more than another early 20th century
psychopath. Certainly not a hero, a giant or even a decent human being.
Wouldn’t he had been kicked out of 10 Downing St. Europe would have certainly
suffered another WW2 aftermath, only to feed his personal and sick bloodlust.
[https://en.wikipedia.org/wiki/Bengal_famine_of_1943](https://en.wikipedia.org/wiki/Bengal_famine_of_1943)
~~~
aaron-lebo
This is inaccurate. Churchill if anything was underrated by history. The
Gallipoli disaster occurred not because of his plans (which was a quick naval
attack up the straits, which the British were on the verge of doing and the
Turks later admitted would have taken Constantinople had then done so -
probably ending the war much earlier, saving millions in Europe, Russia, and
elsewhere).
This is a man also largely responsible for the tank (also ending the war,
eventually) and probably the main reason Britain did not back down in 1940,
saving much of the world from far far worse in Nazi Germany. We can disagree
about his methods, but he was probably right in _why_ he was so aggressive
after WW2 - he saw the USSR for what it was, as he did many things through his
life.
Not without flaw or mistake, but to describe him as you have is not very
accurate. There's few people who deserve to be considered "great men", but he
was one of them. Even if not, he was not the one sided caricature you have put
forward. I'd suggest a good, in-depth biography.
It's perhaps easier to understand some of him when you read the pleadings of a
boy for his parents to see or respond to him, which they ignored while they
had time for the king and the rest of British high society. This is a man whom
actually fought in battles, didn't shy away from conflict or duty, unlike some
in his social class. He was at times a liberal and at times a conservative
(and took principled stands for both sides), but at the end of the day, was
not a monster and was much better than most. The victors may write history,
but sometimes there is a reason they won.
To offer a counter-example, consider Churchill's dressing down of the man
responsible for the 1919 Jallianwala Bagh massacre in front of Parliament:
[http://www.indiaofthepast.org/contribute-memories/read-
contr...](http://www.indiaofthepast.org/contribute-memories/read-
contributions/major-events-pre-1950/365-churchill-on-jallianwala-bagh-
massacre-1919)
[https://en.wikipedia.org/wiki/Jallianwala_Bagh_massacre](https://en.wikipedia.org/wiki/Jallianwala_Bagh_massacre)
_Both Secretary of State for War Winston Churchill and former Prime Minister
H. H. Asquith however, openly condemned the attack, Churchill referring to it
as "monstrous", while Asquith called it "one of the worst outrages in the
whole of our history".[54] Winston Churchill, in the House of Commons debate
of 8 July 1920, said, "The crowd was unarmed, except with bludgeons. It was
not attacking anybody or anything… When fire had been opened upon it to
disperse it, it tried to run away. Pinned up in a narrow place considerably
smaller than Trafalgar Square, with hardly any exits, and packed together so
that one bullet would drive through three or four bodies, the people ran madly
this way and the other. When the fire was directed upon the centre, they ran
to the sides. The fire was then directed to the sides. Many threw themselves
down on the ground, the fire was then directed down on the ground. This was
continued to 8 to 10 minutes, and it stopped only when the ammunition had
reached the point of exhaustion."[55] After Churchill's speech in the House of
Commons debate, MPs voted 247 to 37 against Dyer and in support of the
Government.[56] Cloake reports that despite the official rebuke, many Britons
"thought him a hero for saving the rule of British law in India."[57]_
Dyer was celebrated by the pubic at large both before and after the attack
(and after this speech). But if Winston was a such an inhumane monster, why
take the side he did? You'll find in many occasions in history, he took
principled and considered if not always correct positions. He certainly wasn't
a Hilter or even a Bush.
For more reading:
[https://www.amazon.com/Last-Lion-Winston-
Churchill-1874-1932...](https://www.amazon.com/Last-Lion-Winston-
Churchill-1874-1932/dp/0385313489)
~~~
mito88
this book makes a valid point:
[https://www.amazon.ca/dp/0307405168/ref=cm_sw_r_cp_awdb_t1_e...](https://www.amazon.ca/dp/0307405168/ref=cm_sw_r_cp_awdb_t1_eijjBbHKQ5VKY)
~~~
oldcynic
No, it _really_ doesn't. It's pulp fiction fantasy.
I read it when it came out and I enjoyed it - as fiction. I like alternative
histories - I've read many. I enjoyed the novel SS-GB 30 years ago far more,
it was far more credible.
From memory... His whole argument is built on the assumption all Hitler wanted
from Poland was the return of Danzig, and that all Germany wanted was peace
and prosperity, but poor harmless Germany was surrounded by oppressive
enemies. The same oppressors who spent 15 years appeasing whilst Germany
occupied Rhineland, Austria and Sudetenland (Czechoslovakia) Well, there are
so many ways to tear down the second point I barely know where to start.
So let's have a go at the first. He claims Hitler wanted Poland as an ally so
clearly only wanted Danzig. So how better to gain an ally than invade them? So
he starts trying to make a case that German diplomatic efforts were entirely
honest and seeking to preserve peace. Further he dismisses the Polish
politicians in short order (as some historians have done). It does rather
raise the question of why then would Germany want an alliance.
Nonetheless they signed a non-aggression pact (note: not an alliance) in the
mid 30s. Germany then sought to be given sovereignty of Danzig the surrounding
region and roads leading to it (includig a half-built autobahn) in, I think 36
or 37. Poland declined, ultimately resulting in the 39 German ultimatum and
invasion. Yup, definitely seeking an ally.
From there he builds on those unlikely assumptions and dives off into fantasy
and antisemitism. Oh, and if Britain had accepted the Nazi's 1940 peace offer
the Holocaust would not have happened at all. Even with all the antisemitism
in Germany throughout the 30s and the propaganda and violence against them?
Further he claims moral equivalence between Hitler and Churchill. Oh dear,
really?
You could make a credible case of an unnecessary war, but it would resemble
this book barely at all. There's a lot of arguments and ways you could
approach that.
You might start with Churchill's (surprising given his history) actions as
Chancellor in the 20s. The disastrous return to the Gold Standard, and by
dramatically reducing defence budgets, _especially_ naval, encouraged further
German rearming and especially naval building. One of the few points I was
able to agree with in the book was his criticism of Churchill's adoption of
the Ten Year Rule. Though he makes it as a minor argument.
You might also point at the harsh terms of Versailles and the failure of the
post-war alliance. It's worth noting Woodrow Wilson's 14 Points War Aims and
instigation of the League of Nations. Not to forget the Americans never
actually got as far as officially joining the League which significantly
weakened the global standing of it. As far as reparations go it was
_Clemenceau_ who wanted harsh terms - mainly as so much of the war took place
on French soil. With the obvious expenses that caused. Lloyd George argued
firmly against excessive reparations. The United States Senate voted down the
agreed 3 party post-war alliance with France and Britain. Churchill wanted an
Anglo-French alliance in the absence of Americans to keep the continental
peace but was unsuccessful. None were willing to occupy alone. Thus
reoccupation of Rhineland, Sudetenland etc were rather easier than they should
have been. The rest is factual history.
Forgive any mistakes. It'll all be on Wikipedia so I'm not going to link.
------
strict9
For many of the reasons outlined in this introduction, I've taken up drawing,
wood engraving, and origami/papercraft. The repetitive parts (carving lines or
folding paper) in particular have an acute soothing psychological effect.
Additionally, my sense is that while engaged in these activities parts of the
mind normally dormant while working with code all day spring to life.
Seems a good antidote to boredom or sadness is painting, drawing, sculpting,
gardening, or something else that's a different language:
>Since change is an essential element in diversion of all kinds, it is
naturally more restful and refreshing to read in a different language from
that in which one's ordinary daily work is done.
~~~
lsalvatore
I've sadly come to the conclusion that painting is not a relief from coding
for me. Coding is translating data logic to keyboard strokes, and then
painting is conceptualizing very different abstract shapes into brush strokes.
They are actually so similar in concept that the coding wears out the part of
my brain that would be really helpful for painting. I've spent many days split
between coding and painting and I've yet to come out the experience feeling
extremely worn out at one of the two. Of course I'm talking about
representational painting, not just making random marks. I've had many nights
of making random marks with brush strokes and all I create is a mess. Perhaps
I need to try to completely lose the analytical part of my brain during
painting.
~~~
obelix_
The subject you pick and the reaction of the people around you to your initial
attempts makes a big difference here.
People underestimate this.
So pick subjects that interest you or are sure to tickle/provoke/excite the
people you intend to show the work too.
------
mark212
George W. Bush was so inspired by this essay that he did the same thing after
leaving office.
[https://www.cnn.com/2017/02/27/politics/george-w-bush-
painti...](https://www.cnn.com/2017/02/27/politics/george-w-bush-
paintings/index.html)
~~~
narag
Drawing is not great, but color is nice and faces are expressive. I wouldn't
buy the paintings but they're better than I expected.
------
pnathan
There's a book of his paintings available. It's fascinating, a peep into a
uncommonly seen side of one of the giants of the 20th C.
| {
"pile_set_name": "HackerNews"
} |
I tried switching to Firefox... - mariusandra
http://mariusandra.com/blog/2013/11/i-tried-switching-to-firefox/
======
thousande
The keyboard CMD+LEFT combo in WYSIWYG editors is a bug in the editor and the
developers should be notified
I do not see any difference between google chrome and firefox when it comes to
toolbars in fullscreen mode. The bars can be hidden from from View -> Toolbars
/ right click in the toolbar and choose which bars that should be visible
| {
"pile_set_name": "HackerNews"
} |
Show HN: Klart – Capture Anything (Pocket for Screenshots) - drikerf
https://klart.co
======
nubela
Why will I need this? (What problem do you solve?))
I use Pocket to read things later, and offline. I use screenshots to convey a
visual point of view, and it's usually ephemeral. I don't keep them.
The only other images I store are camera photos, but I have Google Photos for
that, and I pay $1.99 for 100GB of storage (2/5 of your pricing).
Happy to hear what your thoughts are.
~~~
drikerf
Hi! Thanks for your feedback :)
I also use Pocket for saving things to read later. What I needed was a way to
save visuals of a website. Not just references but images (since they might
change design etc later).
Primarily I made and use it to save designs, copywriting, etc that I like for
inspiration.
~~~
nubela
IC, I use Trello for that. But thanks for sharing :) Always love swedish
startups w/ their beautiful design.
------
pradeepsaini
I don't see any reason why would somebody pay for it. There are free addons to
upload screenshots directly on imgur already.
~~~
drikerf
Hi! Yes there are some addons like that available. However, I target
developers/designers and tailor all features for them :)
~~~
timlyo
What sort of features do you have for developers?
~~~
drikerf
Hi! 1\. Capture actual screenshot (since design may change)
2\. Save source (for getting back quickly)
3\. High resolution screenshots so you can see all details
I'm also planning on:
1\. Showing colors and more from the screenshots :)
2\. Smart categorizing
But still keep it simple and clean :)
------
confusedjs
In case you are not aware of this already:
[http://www.urbandictionary.com/define.php?term=Bumba%20Klart](http://www.urbandictionary.com/define.php?term=Bumba%20Klart)
~~~
Svenskunganka
Klart in Swedish means "clear", "finished/done" or "of course" depending on
what context it is used in.
E.g: Klart jag ska = Of course I will
Considering this application is built by Swedish developers, I'm guessing its
name originates from the Swedish language.
~~~
drikerf
That's correct :)
------
klous
I take a lot of screenshots for work doing competitive analysis with Chrome
Extension Screenshot Minus, which are saved to Dropbox.
Now, what problem do I actually have that I have sought out a solution for but
couldn't find? The abilty to automatically search these screenshots'
_content_. eg. I know I took a screen of a certain site and want to find it
quickly, without estimating when it was captured and previewing images around
that date and hope to find it.
Accomplish this by either OCR on the images and index the content to make is
searchable or save the HTML of the page with the image and index that.
I've looked into OneNote, Evernote and although they have some OCR it's meant
for taking pictures of documents and doesn't kill my pain.
Put that in a Chrome extension and service I would gladly pay for that since
it solves a real pain that costs me time and had too much friction.
~~~
tluyben2
Saving the HTML or the stripped content with the image wouldn't be much of a
problem to make right? Why OCR when the screenshot is of a website?
~~~
klous
I sometimes screenshot an entire w full page, sometimes just a portion with a
manual crop with Screenshot Minus extemsion. I only want to index the part I
capture and search the content within.
~~~
tluyben2
Ah that is indeed more complex... Can't you tie some services together that do
that? If you are the only user it can't be expensive. If no-one already did
that? Would actually be interesting to try. There are OCR cloud services ;
just no clue how solid they are ; anyone tried here?
------
baby
if you have firefox it's pretty easy to take a screenshot of the fullpage by
opening the console and typing something along the lines `screenshot
--fullpage`
if you have OSX and dropbox, you can sync your screenshots automatically to
dropbox as you take them.
my point of view: this is a sweet plugin if it came for free. I have no
incentive to pay for it, unless I'm a very lazy person.
~~~
drikerf
Hi! Thank you for your feedback!
Sure you can take screenshots today and organize them yourself. But the
organization bothered me and this is why I decided to make Klart :). It was
just to much hassle (for me).
~~~
baby
Hey drikerf, that's nice that your taking the time to answer comments here.
I'll try to make a more constructive comment: I think the pricing is too
aggressive, people might like the idea but will not jump before being able to
try it. I would change the monetization to mimic Pocket/Dropbox. Everything is
free but if you want to add functionalities you gotta pay.
~~~
drikerf
Hi!
My current model is motivated by being able to provide a really good service
for the people who are paying. I'm afraid the quality could suffer if I go for
a freemium model. Anyway, I appreciate your honesty and will consider it :).
------
staticelf
> We'll keep your data safe and accessible for you anywhere, anytime.
I would like the option to backup the data, I don't want it to only live in
the cloud. Is there an option for me?
I pay for Pinboard already, could your service serve as that + more?
Sen gillar jag er design, svenskt ren och minimal! But you should fix the page
size, 1.6 MB, you don't really need bootstrap for that minimal page, do you?
;)
~~~
drikerf
Cool! I don't want to lock anyone in or make them uncomfortable. I'll
definitely add a way to download your data smoothly :)
About Pinboard. Some people use Klart as a visual bookmarking app, since it
keeps to source of the screenshot. Did you have any specific features in mind
:)?
Bootstrap - It's so convenient though, isn't it? I'll be looking into
optimizing later :)
~~~
staticelf
Ok, I didn't realize it was screenshots only. But is it limited to the browser
(since it's a browser plugin)? If so, you should be able to save the url with
the screenshot?
Just a tip for a useful feature.
~~~
drikerf
The URL of where the screenshot was taken is saved, so you can always go back
to where it was taken. This way, some people use Klart as a visual bookmarking
app :).
------
m12k
Props for a landing page that quickly describes what the thing does. However
it seems to me that Gyazo does the same plus snapshotting of
windows/applications, easy sharing, Slack-integration, single sign-on, etc. As
it is, I'd have a hard time justifying picking this instead.
~~~
drikerf
Hi! Thanks for your feedback! Gyazo looks like a great app.
With Klart I'm targeting makers/developers/designers that want to capture and
organize inspiration mostly. I'm not trying to be the go-to solution for all
kinds of screenshots but are instead focusing on this group (including
myself). This also means all features are tailored for this group :).
~~~
m12k
Do you have any features planned to differentiate it for that niche? I'm
asking because all the people I know who use Gyazo are precisely
makers/developers/designers. I know that it's sometimes possible to carve out
a business despite competition by having a simpler product focused for a
specific niche and communicating using that demographic's language - I just
wonder if that's realistic here. The Gyazo-users I know seem to use most of
its features - e.g. a designer would both use it to share inspiration with
other designers or capturing and sharing a small gif of a part of an
application to easily showcase a bug to a developer.
~~~
drikerf
Thanks again for your feedback :)
Making Klart was pretty much "scratching my own itch". I do think many tools
out there for this task has too many features for my taste. I'm adding
features for color extraction and organization soon but will always keep it
very simple and clean.
------
galfarragem
Yet Another App. What about Pinterest? And it's free.. I would rather pay for
something that would help me organize pinterest, like changing descriptions of
several pins in one go, etc.
Take this is as a constructive criticism from a designer.
~~~
drikerf
Thank you!
What differentiates Klart from Pinterest is that it saves a screenshot of the
website, so that when it changes, you still have your screenshot :). I'm also
going to add features to make life easier for developers/designers.
------
gravypod
What does this do that you can't do with [http://puush.me/](http://puush.me/)
or ShareX?
The only difference is this is limited to the browser.
~~~
drikerf
Hi! Thanks for your feedback!
I know there exists apps with similar functionality. Klart is made to help
myself and other makers/developers/designers to capture and organize design,
copywriting and marketing inspiration. I'm tailoring features for this group
and trying to make it as simple and easy to use as possible, with great
functionality :).
You can read more about the background here:
[https://klart.co/about](https://klart.co/about)
------
homero
Smart to monetize from the beginning vs disappearing later
~~~
drikerf
Thank you! I'm trying to find a viable business model from the beginning :)
~~~
homero
Before I saw the pricing, I thought I wouldn't use this because it'll
disappear. I don't need it but if I did, I'd be confident. You may want to do
yearly pricing.
~~~
drikerf
Thanks! I'll look into that :)
------
jharohit
Can't you use Google Save to do something similar? What are the benefits on
top of that?
~~~
drikerf
That's correct, Google save provides similar features. Klart is targeted
towards makers/developers/designers and the features will be tailored for them
(and me :)) such as color extraction, organizing etc.
------
nametakenobv
I don't understand why all the screen capturing software has a way to capture
video instead of a static image, but they don't offer to option to convert to
a .gif.
~~~
drikerf
Hi! You cannot capture videos with Klart. It's only for static images. For GIF
I use and recommend recordit.co :)
~~~
Numberwang
Anyone know of a recordit.co where I can store the file locally? (one that
doesn't produce 3Gb for a 30second film).
Upload and then download is not an option for security reasons.
~~~
wingerlang
Quicktime allows window recording. Camtasia 2 as well. The list probably goes
on and on so just google it.
------
samwestdev
Sorry not feeling it
~~~
poerhiza
Shameless plug: why not something like this:
[https://github.com/grafie/acceptum/tree/master/firefox/dist](https://github.com/grafie/acceptum/tree/master/firefox/dist)
Save screen-shots to the desktop with the option of encrypting them...
Oh, and it's also free...(Linux + Firefox 35+)
| {
"pile_set_name": "HackerNews"
} |
BlockChain Non FinTech Use Case – Peer Reviews - tinygmail
http://www.lawbamba.com/peer_reviews
======
tinygmail
BlockChain has gained significant traction in the fintech space. Are there any
live applications in the non Fintech space?
| {
"pile_set_name": "HackerNews"
} |
Open redirects – a vulnerability class no one but attackers cares about - a1a
https://stevetabernacle.github.io/blog/open-redirects-the-vulnerability-class-no-one-but-attackers-cares-about/
======
tptacek
I don't know, I think this case is pretty flimsy. In practice, the value of an
open redirect against modern applications is for "phishing". But speaking as
someone who has dealt with several ATO dramas over the past two years: users
will click on anything. They're not hovering over links to make sure they're
safe.
Open redirects are worth fixing, but they're a lot more common than I think
people expect they are. I think the severity:low the "good" (unconstrained,
straightforward links, persistent, across all browsers) ones get is well
measured.
I see open redirects as sort of the archetype of the "t-shirt vulnerability"
\--- the one the bug bounty sends you swag, instead of cash, for finding.
~~~
shittyadmin
That's quite true, but I think the value in these attacks is that they work
against more technical users than typical phishing attacks - I remember
several years ago someone posted a link on a large technical subreddit which
appeared to be to youtube.com.
It presented a page which claimed to be an age flagged video - at the time
youtube was having many problems with age flagging videos - and sure enough
many people tried to login to it - they looked at the "(youtube.com)" text on
reddit, they looked at their browser when they first clicked the link, but
they never noticed when the URL changed to offsite when they had to login. It
never struck them that a legitimate youtube link could have sent them offsite.
The solution most of those people arrived was simple though: use password
managers which will force some extra suspicion if the login page doesn't
behave as expected.
EDIT: Found the link and discussion,
[https://old.reddit.com/r/programming/comments/bpy7h/think_yo...](https://old.reddit.com/r/programming/comments/bpy7h/think_youre_immune_to_phishing_attacks_see_if_you/)
By the numbers it looks like about 1/2 the people who made it to the sign in
page made it to the submit page. That's a pretty good result especially given
that it's a technical subreddit and people were primed with "think you're
immune to phishing attacks"...
~~~
chrismorgan
It is interesting to note that YouTube now inserts an interstitial “you are
leaving YouTube” screen on its open redirect spot.
That Reddit shows the domain name _next to the link_ (HN also) is, I think,
the key here—it casually set expectations. Most link situations won’t be like
that, and so I’m broadly with tptacek, that it’s not actually so useful. Plus,
businesses commonly use all sorts of different domains, rather than
subdomains, and something like yourbank-security.com instead of yourbank.com
may not even raise eyebrows—to say nothing of people probably not even
twitching at login.yourbank.com.evil.com anyway.
------
wtracy
A decade ago people were using Google redirects to lure people into visiting
shock sites.
Back then, it seemed reasonable to not consider this a real security flaw. Now
that everyone has a Google account, the possibility of credential theft seems
like something worth taking seriously.
At the very least, either host the redirect on a domain that is clearly
distinct from the domain users log into, or ignore the destination parameter
if the referrer is not a trusted source.
Now I'm wondering if this is also a potential vector for DDoS attacks against
a third party. Widely distribute links "to a cute puppy on Instagram" that
redirect to a URL that triggers a resource-intensive search operation on the
victim's server? (Bonus points if the redirect points to a page that loads an
actual cute puppy in one frame, and targets the victim with a 1-pixel frame.)
It sounds like a stretch, but I can't rule the possibility out. Even if it
can't be used to launch a DDoS, I could see it being used for advertising
fraud.
~~~
geofft
> _Now that everyone has a Google account, the possibility of credential theft
> seems like something worth taking seriously._
Not sure I follow - is the idea to redirect from google.com to an attacker's
site that spoofs the Google login page? I think we'll get more mileage out of
solving that with origin-aware authentication mechanisms (password managers,
U2F, WebAuthn, etc.) and perhaps address bars that show the eTLD+1 instead of
/ more prominently than the full URL. Phishing is already a problem even
without open redirects.
> _Widely distribute links "to a cute puppy on Instagram" that redirect to a
> URL that triggers a resource-intensive search operation on the victim's
> server?_
Keep in mind that unrelated web pages can send GET requests to each other by
just using an image tag, so if your website has a resource-intensive search
delivered over GET and no automation to detect suspicious behavior and spikes
in certain types of requests, you're already vulnerable to this via e.g.
someone submitting an interesting blog page to HN that loads youe search page
as a resource. Either make it POST or add some HTTP-level DDoS protection a la
Cloudflare.
Same with advertising fraud - ad clicks should be POSTs. (Open POST redirects
do seem more dangerous but are probably rare.)
~~~
wtracy
Relying on your customers to use password managers to protect themselves is
not very useful in the Eternal September age of the internet. (I do see your
point that a Google redirect is only marginally more likely to be effective
for phishing than a link to something like goegle.com.)
Everything else in your comment is spot on.
------
TomAnthony
The problem is that often Open Redirects can be leveraged in unexpected ways,
beyond the conventional attacks listed.
I have previously been awarded a bug bounty by Google for an issue that
leveraged open redirects on victim sites to hijack their link equity
(PageRank): [http://www.tomanthony.co.uk/blog/google-login-
hijack/](http://www.tomanthony.co.uk/blog/google-login-hijack/)
It would have allowed a non-trivial financial impact on victim companies.
Secondly, I submitted an issue to Google which leveraged open redirects on
their properties to hijack the login flow (i.e. a user is on an official
Google page, selects a user and is redirected to an attacker for the password
prompt - halfway through the login flow, when a user has likely already
established they are on a real site):
[http://www.tomanthony.co.uk/blog/google-login-
hijack/](http://www.tomanthony.co.uk/blog/google-login-hijack/)
Sometimes open redirects are unavoidable, but all too often they aren't
necessary and so it is simply lazy to not fix them and point to Google and
others who mark them as WONTFIX as reason not to bother doing so yourself.
------
arkadiyt
Surprised the author doesn't mention oauth - open redirects are the achilles'
heel of oauth flows and allow for full account takeovers. It is very common.
~~~
enjo
Very common in 2019? I haven't run across an OAuth provider in some time that
isn't properly checking redirect_uri against at least a whitelist of domains
(if not the full URL).
Is there another redirect attack I'm not aware of? The other attacks on
redirect generally involve gaining access to some other page on the client you
are attacking and using that as a redirect which the provider will often allow
if it's only validating the domain. That's not really an open redirect,
however...
Am I missing something?
~~~
bennofs
If they check the domain, chain it with another open redirect in the same
domain.
------
edent
They're also really useful for evading spam filters. I found[1] a bunch of
government domains with open redirects.
Spammers were sending out emails containing links to
`example.gov.uk/redirect?url=dodgy-viagra.ph` - and certain spam filters were
trained to whitelist "trusted" domains.
You also see a lot of open redirect abuse on forums - especially where they're
configured to only show the first few dozen characters of a link.
[1]
[https://www.openbugbounty.org/researchers/edent/](https://www.openbugbounty.org/researchers/edent/)
------
quangio
Open redirect alone doesn't look dangerous. But combining it with another
vulnerabilities like OAuth misconfiguration -> account takeover. I wrote a
blog about this common mistake some time ago: [https://pwn.netlify.com/open-
redirect-to-oauth-token-theft.h...](https://pwn.netlify.com/open-redirect-to-
oauth-token-theft.html)
------
codezero
If you ever get a third party penetration test, this is like, the first thing
they find. To say "no one but attackers cares about," is pretty nonchalant –
we immediately patched up this clearly bad attack vector, despite it not being
extremely likely to manifest as a serious problem to us, because, like, you
should just do that.
~~~
OliverJones
I just fixed one myself. It's not that hard to sanitize redirect parameters.
One good way, if it fits your app, is to insist they be internal-only:
"/app/profile" rather than external
"[https://evil.example.com/phish/login"](https://evil.example.com/phish/login")
I believe it's worth fixing these, not only because it gets penetration tests
to shuddup, but because cybercreeps...
------
hayksaakian
Open redirects are also used for SEO spam to hijack domain authority and other
nefarious purposes.
It's silly that these big tech companies won't fix them.
------
GlitchMr
I once reported an open redirect attack to GitHub, and they were like, nah,
WONTFIX. I believe the issue still exists.
That said, how useful is an open redirect attack really?
~~~
Kalium
Depends on where in the system it is. If it's part of a flow involving
sensitive data, an open redirect can be used to harvest that data from users.
This might be anything from login credentials to bank account info, depending
on what flow is involved.
------
userbinator
Open redirects are also used to prevent referrers from propagating through. In
that sense, they're very useful for anonymisation.
~~~
trumped
there are many browser extensions to spoof or disable your referrer
~~~
userbinator
The point is for the site owner to prevent it from showing up in the referer
logs of other sites, regardless of browser.
~~~
trumped
I wish every site would do that... but they like to do the opposite
------
tikumo
You could just add some kind of hash based on the redirect url and check that,
to ensure that it can't be altered.
~~~
xxs
For this you need some pepper (i.e. a secret) to prevent doctoring.
The better option is an encrypted blob containing all relevant data and a
timing component. Of course those thing do require effort. It makes it opaque
for everyone but the server handling the redirect.
------
ggggtez
I don't think most browsers support redirect to javascript anymore. Maybe IE?
~~~
dbielik
Yes, they still do depending on how you redirect (i.e. unsanitized:
location.href = url).
A nice benefit of using a framework like angular, Vue, react, etc, is that
they prevent attacks like this unless you explicitly disable those features.
------
foobar_
Is there a definitive list of attacks with prevention mechanisms somewhere ?
~~~
Kalium
You might find this to be interesting and informative reading:
[https://www.owasp.org/index.php/Category:OWASP_Top_Ten_Proje...](https://www.owasp.org/index.php/Category:OWASP_Top_Ten_Project)
This covers what the vulnerabilities are, how they happen, how they work, and
how to prevent them. It's not exhaustive, because that list would be endless,
but it's one of the best resources for a web developer who is not a security
practitioner.
------
bronco21016
Also a great tool for bypassing corporate firewall for browsing.
| {
"pile_set_name": "HackerNews"
} |
People Over 55 Are Quitting Facebook - ciscoriordan
http://www.businessinsider.com/people-over-55-are-quitting-facebook-2009-5
======
tjic
Demographics are appealing based on two things: the direct revenue that
advertising to them / selling to them can bring, and the indirect value of how
much they serve to propogate the brand.
Older adults are worthwhile because they've got a lot of discretionary income
once the kids are off at college.
Young hip adults are worthwhile because they increase brand cachet.
I hate to be morbid, but with the meltdown in IRA and 401ks since January,
people over 55 might not be worth nearly as much as a demographic as they once
were.
Facebook probably doesn't care too much about this.
At <http://smartflix.com>, we've done demographic surveys, and our best
customers are older adults - speaking in generalities, the women are retired,
or working part time, and have enough money to buy canvas and oil paints, and
the guys are retired or working part time, and have enough time and money to
work on their cars, learn metalworking, or tinker with their guns.
Because our price point is relatively low (our a la carte rentals are ~$10,
and our subscription plans are << $30/month), we haven't seen much of a
decline in revenue from this demographic.
------
cellis
News Cycle lately looks like this:
Twitter. Iphone. Facebook. Twitter. Iphone. Facebook. Twitter. Iphone.
Facebook. Twitter. Iphone. Facebook. Twitter. Iphone. Facebook. Twitter.
Iphone. Facebook.
ok you get the point.
~~~
vaksel
more like
Facebook, Twitter, Twitter, Twitter, iPhone, Twitter, Twitter, Twitter,
Twitter, Facebook, Twitter, Twitter, Twitter, Twitter, Google, Twitter,
Twitter, Facebook, Twitter, Twitter, Twitter, Twitter, Twitter, Twitter,
Twitter, Twitter, Twitter, Twitter, Twitter, Twitter, Twitter, Twitter,
Twitter, Twitter, Twitter, Twitter, Twitter, Twitter, Twitter, Twitter,
Twitter, Twitter, Twitter
~~~
kyro
More like
Why do we always try to extrapolate made up patterns for the sole purpose of
whining?
"Another X is going to buy Y before I eat Z article, ugh" etc.
------
mattmcknight
How reliable are these numbers? In particular, I'd like to see a precise
definition of an active user.
It seems odd to have such a sudden switch with no external factors. To add
1.5M active users in a demographic in Feb and March and end up with just over
2M at the end of May seems fishy
"When asked for comment, a Facebook spokesperson responded, 'Bear in mind that
these tools gives out estimates, not real-time figures.'"
~~~
lallysingh
I'd say lots of people joined in when they heard about it in the news, and
left when they noticed:
1\. It wasn't in the news anymore (that's twitter)
2\. It provided them no reason to stay
------
jorgem
Is Facebook killing them?
~~~
TweedHeads
They're running out of soylent green
------
antidaily
...and joining Eons.com.
| {
"pile_set_name": "HackerNews"
} |
Monadic parser for CSS in Clojure - kachayev
https://gist.github.com/kachayev/b5887f66e2985a21a466
======
juliangamble
_it 's easier to work both with monads and parsers in dynamically typed
language_
I'm asking a genuine question. I'm certain other people have had a different
experience to this. Could you expand on what makes it easier? (And would you
deliberately distinguish between 'easy' and 'simple')
~~~
kachayev
Nice question!
It "easy". Cause it takes less characters in your code: you don't need "type
classes" of any form, you don't care about liftings etc. You can start from
2-3 lines of code and see immediate result.
But it's really not that "simple", cause without constant thinking about type
of each expr it becomes very hard to trace long chains of monad operations
very quickly. Plus types are great for verifying that you didn't break
anything inside your "do" block (which is painful in dynamic env).
~~~
jerf
"Cause it takes less characters in your code: you don't need "type classes" of
any form, you don't care about liftings etc. You can start from 2-3 lines of
code and see immediate result."
Considering you linked directly to the roughly-equivalent Haskell, which
contains neither of those things, that's a strange statement.
You will still need to care about liftings if you do monad transformers in a
dynamic language, and if you implement your own monadic value in Clojure you
may not literally type in an "instance" but you're still going to have to
implement it.
You may have attained parity with Haskell's ease-of-parsing, but you certainly
haven't shown it to be "easier". That _is_ saying something, though... few
languages can implement a monadic parser without horrid syntax. (Assuming you
actually have... it's a common problem to think one has implemented something
monadic without actually having done so. [1] But that's just a general
comment, I'm not familiar enough with Clojure to have an opinion.)
However...
"Plus types are great for verifying that you didn't break anything inside your
"do" block ( _which is painful in dynamic env_ )."
Emphasis mine. This tends to suggest that it is still not _easier_ in a
dynamic environment. Again, getting to even "almost as easy" is still a big
win, though.
Interestingly, I'd suggest that the biggest problem with monads in a dynamic
language is that when you do screw up, it's going to be harder for the _human_
to understand it, and in the process, it's going to be harder for the human to
come to understand monadic patterns in general. If someone is already very
fluent in monadic patterns from Haskell experience, the craziness that might
come out of a mistyped (in either sense) dynamic expression will probably be
something they can handle in stride, but my guess is that it will be
substantially more difficult to obtain that fluency in a dynamic language. In
my personal experience, the fact that dynamic languages allow for more
sloppiness comes out in code in a very real and profound way.
(And by "personal experience", I mean that while it is beyond the scope of
this text box to elaborate further I've noticed that my own work in API
creation between static and dynamic languages has noticeable differences in
correctness and clarity-of-thought when I'm working in static and dynamic
languages. I encountered another example just this last week of a confusion
I'd made in an API of mine between two different entities that the dynamic
type system had allowed me to conflate into one that a static type system
would never have let me get away with. And I'm not even talking about
Haskell's level of static typing... even conventional manifest typing would
have prevented this mental error.)
[1]: [http://www.jerf.org/iri/post/2928](http://www.jerf.org/iri/post/2928)
| {
"pile_set_name": "HackerNews"
} |
Whoisi: Follow your friends on the Internet. - sant0sk1
http://www.0xdeadbeef.com/weblog/?p=348
======
bootload
_"... First and foremost the site is organized around people. Everyone has an
entry that gives an overview of what they are doing on the internet - weblog
posts, flickr photos, etc. But that entry is created entirely like a wiki.
Anyone can edit anything. ..."_
Interesting because you don't really control your own Feed account. It is at
the moment editable by anyone in a wiki-like way. If it is people based I can
see the same sort of editing & ownership problems that plague Wikipedia. I'm
at ~ <http://whoisi.com/p/2487>
| {
"pile_set_name": "HackerNews"
} |
Book Review: Designing Distributed Control Systems - michjedi
http://www.michalpaszkiewicz.co.uk/blog/reviewddcs/index.html
======
basetensucks
I've found this book to be quite solid so far:
[http://shop.oreilly.com/product/0636920032175.do](http://shop.oreilly.com/product/0636920032175.do)
I'm about a quarter to half of the way through and it's been interesting and
quite thorough even though it's still a "beta" book. The content is a little
high level so some familiarity with distributed systems principles is useful
but the text is very approachable and easy to understand (so far).
I got it after seeing several recommendations in other HN threads so I'm not
the only person that has found it useful.
~~~
bogomipz
I can also recommend this. Even in its beta form its still a worthy read. It
feels more "rubber on the road" and less formalism. I'm looking forward to the
finished book.
------
lobster_johnson
I'd love to read an actual review of the book, but this was thin to the point
of being blogspam. The article's author told me nothing about the book, except
that it apparently contains 80 design patterns about distributed systems that
the reviewer promptly forgot.
~~~
michjedi
I was also surprised to see this, of all my articles get popular on hacker
news. I put more effort into my primary school homeworks!
------
simo9000
Points for Vector Clock name drop. I'm a big fan of that pattern.
------
decebalus1
Some constructive criticism on the font used for headings: it's atrocious. If
that's your handwriting, good for you - it's pretty good handwriting - but it
definitely affects the readability of the content.
| {
"pile_set_name": "HackerNews"
} |
Google is encrypting search globally. That’s bad for the NSA and China’s censors - Libertatea
http://www.washingtonpost.com/blogs/the-switch/wp/2014/03/12/google-is-encrypting-search-worldwide-thats-bad-for-the-nsa-and-china/?tid=pm_pop
======
Golddisk
Would this protect the NSA from stealing the data before it's encrypted
though? Through their Turbine project?
| {
"pile_set_name": "HackerNews"
} |
Comparison of X Window Managers - _of
https://en.wikipedia.org/wiki/Comparison_of_X_window_managers
======
derekp7
I really wish the full potential of compositing window managers could have
been fulfilled, instead of the tech behind them being used for mostly eye
candy.
Here are two items that should be doable with compositing. First, when giving
a presentation with an external monitor, I'd like to tag specific windows to
be mirrored (and scaled, if appropriate) on the secondary monitor. That way I
can still be messing with my instant messages or email in private (which you
can't do if you are mirroring your whole screen), yet be able to easily work
with content that the audience is also viewing (by no having to shift my head
from my laptop screen up to the projector all the time). This would be similar
to using online meeting software where you share specific windows.
The second item, that you can sort of do now but not cleanly, is have multiple
mice and keyboards, so that a mouse that selects a given window gives its
associated keyboard input focus to that window. While the other mouse/keyboard
combo is working with a different window. This would be great for pair
programming, especially with a multi-windowed shared buffer editor (like what
Emacs can do).
You can do this now, with some editing in the X config file, but there is no
indication on the screen which window currently is focused to which keyboard
-- this can be accomplished with the WM changing the window border or title
bar color as appropriate.
~~~
microcolonel
This sort of thing is extremely difficult on X, but very doable on Wayland.
I've been thinking about putting broadcast/streaming functionality directly
into a compositor, so that your presentations/scenes could be composited
separately from your actual windows. Think OBS, but the components/layers of
the presentation are Wayland surfaces, and vice-versa, the windows are layers
of the presentation. In this sort of system, the compositing can easily happen
on the GPU, and can be accelerated like any desktop compositing.
~~~
Crinus
> This sort of thing is extremely difficult on X, but very doable on Wayland.
I'd say it is the other way around. With Wayland you'd need buy-in from the
entire stack since in Wayland everything needs to be implemented in the
compositor. With X all you need is a compositor (not necessary even your
window manager, it can be a separate compositor) that ignores the area of one
monitor when compositing and instead renders duplicates of the tagged windows
there. You can keep using everything else you were already using.
~~~
newnewpdro
I'm not clear on how this would happen on wayland as I haven't done any
development on it yet, but with X it would be tricky since the server still
has the window hierarchy state for event routing etc.
If you simply mirrored redirected windows in triplicate all over the place in
the compositor, it wouldn't magically make the window manager and X server
aware of all those areas as being windows to manage and route events at. You'd
just have these ghost windows that can't be directly interacted with as first-
class windows.
~~~
badsectoracula
> You'd just have these ghost windows that can't be directly interacted with
> as first-class windows.
But that is what the GP asked for, not full duplication.
Though if you want duplication it might be possible by creating a window over
the duplicated area that the compositor does not render but still grabs all
input events that are then forwarded to the original windows via XSendEvent.
------
alxlaz
If anyone wants a trip down the memory lane,
[http://www.xwinman.org/](http://www.xwinman.org/) is still up.
A long, long time ago -- but still quite some time after it stopped being
(too) regularly maintained -- I emailed Matt Chapman to ask him to include my
WM in the list. He never answered, thank God, that was my first piece of non-
trivial X11 code and it was absolutely gruesome, I don't know what the hell I
was thinking.
~~~
z5h
It's a miracle we could ever choose just one and get to work. Back in my Linux
days it was PWM for me.
[https://tuomov.iki.fi/software/](https://tuomov.iki.fi/software/)
~~~
alxlaz
WindowMaker, then FVWM were my drugs. I used tiling window managers for a
while, when my typical workstation was a laptop, but now that I have a large-
ish screen (27") on a desktop they're pretty bad -- everything is either too
wide to be useful, or too narrow. Ratpoison was definitely my favourite (I
also use Emacs, figures...), but I liked wmii, too. By the time I ran into pwm
I was hooked into Ratpoison :).
LXQT does its job for me these days. It's not the most polished but at least
it doesn't go out of its way to make my desktop look and act like a tablet so
I'm happy with it.
I've been toying with writing a Wayland compositor that does wmii-like tiling,
but can also do proper floating window management, but I have to wait for
things to settle on the Wayland front before writing anything that's useful...
Edit: whoever downvoted you _clearly_ never had a few hours of fun on a Friday
night tweaking FVWM only to find out it's 4 AM now and oh crap it's also
Monday!
~~~
signa11
still using fvwm2, haven’t found anything that comes close.
~~~
itsmenow
so do I. Although I discovered it rather late - in 2004. It's remarkable how
configurable it is. I adopted some version of what this guy did:
[https://www.youtube.com/watch?v=xdSgf-
IykIo](https://www.youtube.com/watch?v=xdSgf-IykIo) to do "manual tiling".
Also can't find anything modern that even remotely can compare.
------
mseidl
I was a long time KDE user, then went to light weight wm I switched around
from fluxbox, openbox. Then I went to tiling window managers. Which is where
I'm at today. I have a screen shot of my old xmonad setup..
[http://i.imgur.com/c4HGAEs.png](http://i.imgur.com/c4HGAEs.png)
But now I'm using i3, as managing haskell crap is kind of a pita.
~~~
techntoke
Might I suggest Sway when you're ready to make the transition to Wayland.
~~~
coleifer
Implying that switching is inevitable.
~~~
tapoxi
Haven't the Xorg developers expressed interest in deprecating it? Sure,
someone could take up the mantle to continue working on Xorg, but it sounds
similar to staying on Python 2.
~~~
Crinus
Unlike Python 2 not everyone among the Xorg developers want to drop it (e.g.
Keith Packard doesn't seem very interested in Wayland). Also Xorg isn't really
one thing, it is a bunch of different subprojects with the server being the
one that is mostly referred to. Even if everything else stays exactly the
same, the X server will still need to be updated since it also works as
XWayland.
Finally unlike Python 2 vs 3 the difference between Xorg and Wayland is
tremendous, so i can easily see people who will be willing to fork it to
continue development.
~~~
bitwize
> the X server will still need to be updated since it also works as XWayland.
No, it will not. Xwayland will likely be deprecated and removed in the coming
years. The rationale being that nobody uses any Athena or Motif programs
anymore and all of the toolkits that matter to modern desktops will have
Wayland backends already.
~~~
aidenn0
What about proprietary software?
~~~
bitwize
Proprietary devs will be expected to upgrade to, for example, a new version of
Qt that supports Wayland as a back end.
Xwayland may kick around for really old apps but it will not be maintained at
all and you will be expected to forward-port your software to Wayland.
~~~
jml7c5
I think parent is asking about proprietary software that uses X11 which is no
longer maintained or updated.
~~~
bitwize
They can use the last release of Xwayland, whatever and whenever that is.
But more likely, they will need to be run on some ancient OS or distro version
and thus containerized or virtualized anyway.
------
city41
i3 is one of my favorite pieces of software. I’m currently writing a clone of
it for ChromeOS (as best as the Chrome API will allow anyway).
I think it’s a shame you can’t get something like i3 on OSX or Windows. It’s a
primary reason I stick to Linux.
~~~
newhouseb
> I’m currently writing a clone of it for ChromeOS
This is neat! Are you writing this as some sort of Chrome Extension or forking
Ash?
~~~
city41
Currently it's just a Chrome extension. The Chrome windows API is pretty
decent. I think this "window manager" will have plenty of limitations, but I
also think it might just be good enough. In parallel I'm also poking at ash a
little bit, but I doubt I'd be able to take on such a large project and
actually succeed.
This extension is a window manager that mimics Amethyst for OSX:
[https://github.com/brockgr/chrometile](https://github.com/brockgr/chrometile)
It can give an idea of what's possible with the chrome.windows API.
------
manjana
I've used i3wm and quite liked it. Simple, efficient and easy to setup. I'd
properly propose i3 for anyone wanting to taste what a tiling window manager
is like. I don't think it's competitors are nearly as easily configurable but
I only have experience with i3wm so I cannot say for sure.
~~~
Izkata
I've tried i3 a few times, and find it way overcomplicated in daily use
compared to wmii.
------
phjesusthatguy3
I've been using Awesome on Debian Stable for years. I haven't configured it
very much, and I mostly use it to keep everything full screen all the time.
I'm sure at some point the X Window System will be completely abandoned and
I'll have to move on to something else, but I haven't figured out what that
something else is, just yet.
~~~
cycloptic
There is a port to Wayland being worked on. Note that it's not usable yet.
[https://github.com/way-cooler/way-cooler](https://github.com/way-cooler/way-
cooler)
~~~
phjesusthatguy3
Thank you, I'll be following that project.
------
arethuza
I think I went:
twm -> olwm -> mwm
I then stopped faffing about with such things (after spending huge amounts of
time getting configuration _just so_ ) and over the years started increasingly
just to go with defaults for most things.
------
papermachete
XFCE has reportedly fixed screen tearing as of v4.14. Manjaro XFCE idle RAM
usage is now <800MB, no microstuttering or input lag.
~~~
shantly
> <800MB
What's getting it even close to that high? Even allowing for more features and
some serious bloat I'd expect modern Linux with XFCE to fit inside 250MB, not
counting file cache and such.
~~~
papermachete
That's counting whatever Manjaro decided to put in my ramdisk.
------
swiley
FVWM has a graphical configuration program. Also it has a window switching
widget you can put in the tiny window with the pager and stuff.
I use cwm now though because it just gets out of the way and does it’s job.
~~~
enriquto
do you use cwm on linux or openbsd? If linux, where do you get it from?
~~~
swiley
I used to just compile it but the most recent version of alpine includes
binaries in the repo.
It has very few dependancies, it’s definitely one of the easier packages to
build yourself.
------
airencracken
I used gnome2 for a while, then eventually moved to awesomewm when gnome-shell
was announced, but I've settled on dwm as my wm of choice. It does what I want
and nothing else.
------
hackbinary
My favourite X Window website has always been Kenton Lee's:
[http://www.rahul.net/kenton/index.shtml](http://www.rahul.net/kenton/index.shtml)
(from the '90's anyway.)
------
msla
I have a basic environment I take with me across distros and across time:
Window Maker, xterm, zsh, and Emacs. I have configuration files for all of
them, and the combination makes me fairly insensitive to distro as long as it
has a reasonable package repository and dependency-tracking package
management.
------
joveian
To pharaphase Tuomo Valkonen (creator of the tiling window manager ion), most
of these should not be called window managers since they make you manage the
windows.
I use ratpoison and GNU screen.
These wikipedia lists can be quite helpful, even if they are often out of date
and incomplete.
------
nycthbris
I love the variety of styles and customizability. It’s really impressive to
see some of the designs people have over at reddit.com/r/unixporn . I want to
jump in but then realize how much of a time sink it can be.
------
__s
I prefer [https://github.com/serprex/nobox](https://github.com/serprex/nobox)
(which isn't on wiki's list)
Only using 3 pages of RAM is pretty good
------
ausjke
lxde worked well for me and memory footprint is totally good.
still the GUI for embedded linux device is lacking, Android unifies that but
it's more for phones loaded with a huge chunk of bloat-ware for other non-
phone use cases.
I have been looking for embedded-linux-GUI for a long while, but I'm happy
with gnome/lxde on Desktops.
------
shmerl
Wayland compositors is a more interesting topic.
So far quite a lot of work remains to bring them up to date.
------
Chmouel
So no new windows manager after 2013?
------
chimichangga
Windowmaker.
~~~
zeotroph
I was a long time Window Maker (not Windowmaker, the world's leading software
for... something else) user for a long time as well, but finally jumped ship
to boring old KDE.
It finally acquired most of the essential window management features of
WMaker, such as Meta-R/L-Mouse to move or resize the window by clicking
anywhere into it or shading windows.
However I still miss selecting multiple windows with a rubber band and then
moving them to a different virtual desktop together, or the dock apps. I still
can't find a proper widget which displays the network activity or something
like wmforkplop to show the general system load.
~~~
fullstop
I sort of wish that kwin supported dockapps.
| {
"pile_set_name": "HackerNews"
} |
As coronavirus cripples supply lines, more U.S. firms looking to leave China - ilamont
https://www.latimes.com/politics/story/2020-03-04/spreading-coronavirus-tears-apart-global-supply-chains
======
seren
Sorry if this is a naive question, I don't work in supply chain, but do
companies usually know the suppliers of their direct supplier? Or have ways to
manage that kind of indirect risks ?
Because if you move your factory from China to Mexico, but some parts of your
Mexico factory are still sourced from China, you have only masked the problem.
| {
"pile_set_name": "HackerNews"
} |
Selling My Passive Income Stream: JSCompress.com - vlucas
http://vancelucas.com/blog/selling-my-passive-income-stream-jscompress/
======
vlucas
Owner here. I just updated the post with the selling price. Enjoy!
| {
"pile_set_name": "HackerNews"
} |
Why is insulin so expensive? - jseliger
https://marginalrevolution.com/marginalrevolution/2019/04/why-is-insulin-so-expensive.html
======
aurizon
Because the threat of death unless you pay up concentrates the mind - or
crass, deep sucking greed - you choose!!
| {
"pile_set_name": "HackerNews"
} |
Checking Up on Dataflow Analyses - ingve
http://blog.regehr.org/archives/1388
======
nickpsecurity
This was in its blog comments:
[http://dsw.users.sonic.net/oink/](http://dsw.users.sonic.net/oink/)
Wilkerson claimed the CQual++ tool found hundreds of bugs in Debian with a 50%
positive rate. Said it also spotted Heartbleed. Worth independent testing on
some known-buggy code or projects with little attention to see what it can do.
Liquid Types is another interesting one more people need to try out on various
types of code to assess effectiveness & ease of use:
[http://goto.ucsd.edu/csolve/](http://goto.ucsd.edu/csolve/)
------
whitten
I'm wondering to what extent that this kind of Dataflow Analysis can be used
in scripting languages such as Python or MUMPS. Deciding properties over all
elements of an array is difficult, just as checking every element is time
consuming. There is also some concern re proper treatment of sparse arrays
when doing matrix calculations.
~~~
mafribe
Are you talking about DFA on straight Python?
In principle this is possible, but given the complex semantics of language
terms, this will be quite complex. Typically DFA is run on intermediate code
in the optimising part of a compiler. Intermediate code is typically RISC-like
idealised machine code. Each specific instruction is very simple and hence
computing its effect on global data flow can easily be worked out.
| {
"pile_set_name": "HackerNews"
} |
Brian Kernighan: Unix, C, Awk, AMPL, and Go Programming - AlexeyBrin
https://www.youtube.com/watch?v=O9upVbGSBFo
======
7thaccount
I didn't think I'd see AMPL (mathematical modeling language) mentioned
alongside a scripting language and two systems languages.
~~~
AlexeyBrin
Kernighan coauthored a book about AMPL.
~~~
7thaccount
I didn't know that, so thanks for pointing it out. I've never used AMPL, but
have read plenty of code written in similar mathematical modeling languages
(AIMMS, GAMS...etc).
| {
"pile_set_name": "HackerNews"
} |
Y Combinator, Not Lambda School, Is Unbundling Education - barry-cotter
https://medium.com/swlh/y-combinator-not-lambda-school-is-unbundling-education-bd6fdf0c78d7
======
musicale
Education may be all about signaling, but I haven't found another job whose
primary responsibilities consist of taking mostly interesting classes in a
wide range of disciplines for four years. And while corporate campuses may
aspire to be like college campuses, most of them aren't nearly as nice, as
social, or as enjoyable. Colleges also tend to have superior libraries, art
galleries, sport/recreation facilities, and performing arts venues, and they
provide a vast array of extracurricular activities and clubs.
Working is financially a lot better than taking out massive student loans, but
it usually doesn't give you a lot of time to study random subjects that
interest you, or to pursue fun and educational activities that aren't related
to the company's core business.
------
barry-cotter
> If you were reinventing the Ivy League as a signaling-focused product, your
> stripped-down version might look like this: you invite a small cohort of
> talented people to move to a city for about three months, you host some
> social events so they get to know each other, you have them work on projects
> and you advise them on those, and afterwards you introduce them to a bunch
> of savvy rich people.
> In other words, you’d invent Y Combinator.
| {
"pile_set_name": "HackerNews"
} |
Fish Feel Pain - anarbadalov
https://www.hakaimagazine.com/features/fish-feel-pain-now-what/
======
pillowkusis
The tricky bit about consciousness is that nobody can find a useful way to
measure or define it. So we end up chasing our tails talking about if fish
feel “pain”, that is, they suffer, and yet have no tools or criteria that
would help us know.
Let’s imagine that, actually, deer don’t have any form of consciousness and
cannot suffer. Imagine a deer critically injured in a hunt — nose flaring,
eyes open wide, struggling to stand up, screaming maybe. This feels like a
reasonable way for an animal to respond, backed by evolutionary reasons, even
if its a mindless automaton.
Now imagine we magically imbue that deer with a consciousness in this
situation. What measurably changes about their behavior? They still scream,
try to run, struggle to survive — I can’t think of any way the situation would
be different. Conscious or not, the deer behaves the same.
Thus, the claim “deers have consciousness” is non-falsifiable — the claim does
not provide any way to be disproven, since there is no difference in
measurable characteristics if the claim is true or false. One day, we might
have a way to quantify consciousness. For the time being we are not even
close.
Claims that are non-falsifiable are not really worthy of scientific inquiry.
My personal conclusion, then, is that the question of consciousness is not a
useful one. Any animal measurably displaying pain is in pain, in every useful
form of the word, and we have a moral obligation to prevent it. Fish included.
~~~
uoaei
You have rediscovered the "philosophical zombie" problem.[0]
Dr. Giulio Tononi[1] has developed an apparatus for calculating what he calls
"integrated information"[2] which seems so far from limited experiments to be
a good corrolary to the presence of consciousness in biological systems.
It's currently computationally intractable for the human brain at full
resolution but heuristics are being developed to minimize that problem.
[0]
[https://en.wikipedia.org/wiki/Philosophical_zombie](https://en.wikipedia.org/wiki/Philosophical_zombie)
[1]
[http://centerforsleepandconsciousness.med.wisc.edu/people/to...](http://centerforsleepandconsciousness.med.wisc.edu/people/tononi.html)
[2]
[http://integratedinformationtheory.org/](http://integratedinformationtheory.org/)
~~~
pillowkusis
I was sure that I had come across something but didn't know what to google!
Thanks for the links.
------
mannykannot
I read an article not so long ago (unfortunately, I do not recall where)
mentioning the studies of a doctor who was able to open some minimal channel
of communication with patients under a certain form of anesthesia, through
which they were able to answer 'yes' when asked if they felt pain. After the
procedure, they had no recollection of pain (or of being questioned, IIRC.)
This fairly clearly does not generalize to all forms of anesthesia, as some
(including local ones) do block either pain sensors or the signals from them.
I am offering this merely as a datum, as I am not sure what to make of it.
------
baumbart
As humans we are evolved to have more compassion the more similar a being is
to us, and less compassion the more different it is from ourselves. Human
ethics is often selfish (pun not intended) in the sense that it is based on
what feels bad for US when doing it. In my opinion, there is nothing
objectively "good" or "bad", there is only harmony or disharmony in nature.
Pain indicates critical disharmony with the ideal state of any being. Same
applies to plants! Do you think plants feel pain? They certainly do, but
"pain" means something entirely different for them. What about planet earth
and its ozone levels?
The real question we have to ask ourselves is, how much are we responsible for
increasing the _harmony_ in the world around us, vs. focusing on our own
expansion in terms of technology, luxury and total population.
------
em3rgent0rdr
I have trouble believing that the common scientific consensus was that only
terrestrial vertebrates feel pain. Isn't pain an essential evolutionary
survival mechanism? Probably is one of the first feeling evolution produced
along with pleasure (for eating and sex).
~~~
red75prime
Negative stimulus reaction and pain are different things. We know we feel
pain. We can guess that organisms with similar brain architectures are feeling
pain. We can guess that chemotaxis don't induce anything like our pleasure and
pain in bacteria. Ants keep doing their job even after fatal damage. If they
feel something, it is not anything like our pain.
So it is not obvious that our feeling of pain is universal.
~~~
Valmar
> Negative stimulus reaction and pain are different things.
How are they different? Pain is a negative stimulus response that allows us to
know whether something is causing damage to our body.
> We know we feel pain. We can guess that organisms with similar brain
> architectures are feeling pain.
How does feeling pain have anything to do with a brain's architecture? It has
more to do with nerves... block a nerve's functioning, and you don't feel
pain. Also, pain can be psychosomatic.
> Ants keep doing their job even after fatal damage. If they feel something,
> it is not anything like our pain.
Have you seen ants writhe around after being crushed or dismembered? They
definitely feel pain.
> So it is not obvious that our feeling of pain is universal.
Depends on your definition of pain, doesn't it?
~~~
adwn
> _How are they different? Pain is a negative stimulus response that allows us
> to know whether something is causing damage to our body._
The difference is between the unpleasant, subjective experience (qualia) and
the electrical signals indicating physical damage.
A car has sensors that detect physical damage, yet it doesn't feel pain in the
way that humans do. The question is, where on that spectrum bacteria, ants,
and fish lie.
> _Have you seen ants writhe around after being crushed or dismembered? They
> definitely feel pain._
Have you seen a car deploy its airbags and notify emergency services after a
crash? And yet, they definitely don't feel pain. Visible reaction to a
negative stimulus is neither a sufficient nor a necessary precondition for
someone or something to feel pain.
~~~
Valmar
Living beings are not mere machines, so the comparison makes little sense. All
living beings have some form of consciousness, and so, are able to feel some
form of discomfort, of which pain is the most extreme.
~~~
adwn
> _All living beings have some form of consciousness_
Event plants, bacteria, and amoebas? You sound very sure – how do you know
this?
~~~
Valmar
I look at the common elements that living beings have, compared to plain
matter.
Animals have consciousness and can feel pain. Animal and plant bodies are both
comprised of many differentiated cells. Both have DNA. Bacteria are singular
cells, and have DNA...
Plants have been demonstrated to have short-term memory, recognize family and
neighbouring plants, and so on. So... it is extremely likely that plants,
bacteria, fungi, and perhaps even amoebas, also have consciousness, feel
emotions and feel pain. Maybe not in the way we think about emotions and pain,
but in whatever way they do, which is entirely mysterious to us, being animals
with animal-consciousness and instincts. We cannot understand what it is like
to be a plant, bacterium, fungus or amoeba... it is far too alien to our
animal-mind.
You may find these articles of interest:
[http://www.naturaltherapycenter.com/the-secret-life-of-
plant...](http://www.naturaltherapycenter.com/the-secret-life-of-plants/)
[https://nautil.us/issue/34/adaptation/junk-food-is-bad-
for-p...](https://nautil.us/issue/34/adaptation/junk-food-is-bad-for-plants-
too)
------
gadders
The article mostly focuses on commercial fishing, but I wonder what this will
mean for people that fish for pleasure?
I do mostly fly fishing where (in the UK at least on stocked reservoirs) the
catch is killed and (presumably) eaten. I guess in those circumstances it will
be treated similar to hunting mammals.
For coarse/catch and release fishing, I'm less sure of the impact. I doubt if
anyone will stop, but maybe it will mean mandatory barbless hooks and stronger
lines so the fish can be reeled in faster and don't need to be played for so
long to tire them out.
~~~
kawsper
If you can get past the obnoxious music, you can consider vishing:
[https://www.youtube.com/watch?v=VhE9IIc_FTk](https://www.youtube.com/watch?v=VhE9IIc_FTk)
~~~
gadders
I may be missing the point there as I skimmed the video, but you don't
actually end up catching any fish as far as I can see. It looks like you're
just tossing food at them.
Feel free to whoosh me if this is satire flying over my head.
------
tremendulo
There's a difference between pain and suffering.
e.g. a human on an opiate drug can feel pain signals but not be bothered about
them. Yet he can still suffer from the knowledge of his impending death.
We can measure pain signals in animals; we can reasonably guess that most
species don't know that they're eventually going to die. More than that we
don't know yet. Perhaps when we understand better how the mind works (e.g. by
developing AGI) we'll be able to understand animals better too.
------
MaxBarraclough
Here's the mentioned "Can fish really feel pain?" paper by James D Rose et al.
[https://www.agrar.hu-
berlin.de/de/institut/departments/daoe/...](https://www.agrar.hu-
berlin.de/de/institut/departments/daoe/quagrec/dntw/jp_bfm/publ_html/roseetal-
fishfish-online-2012.pdf)
------
xyproto
The things they put those fish through in order to figure out that: yes, they
can actually feel pain.
Guess it's for the greater good of fish everywhere.
------
bjoli
I have thought a bit about what we put some fish species through.before eating
them. Sure, they probably don't experience pain the same way animals closer to
us do, but dragging them for a very long time with hooks in their
mouths/throats and then suffocating them to death just never seemed right to
me.
------
Tharkun
Relevant quote:
"We weep for a bird's cry, but not for a fish's blood. Blessed are those with
a voice." \- Mamoru Oshii
------
kristianov
Food is death. Existence is pain. Life is suffering.
~~~
inDigiNeous
All goes around in circles. The more suffering we cause, the more suffering we
feel. I wish people would understand this, when regarding eating animals.
~~~
pessimizer
What will you eat when we find out that plants feel pain, they just don't look
as much like us when they feel it as a pig does?
~~~
inDigiNeous
Ok this is the most oldest argument people throw around. Let's just agree to
look at this argument for a while and dissect couple of things: a plant
doesn't run away when you catch it. A pig does.
A plant has a nature of giving, radiating, making oxygen and providing for
it's environment. A pig is a gatherer and hunter, and one of the more
intelligent animals out there. When you try to catch a pig, it runs away, it
squeals for it's life.
Anyway it's not about this fact even though it's important, more what's fucked
up in our current system is the systematic enslavement of feeling, thinking
animals from their birth, in these huge killing camps they call farms these
days. If it was even natural, like it used to be more, that the animals lived
a life that they could enjoy. How would you feel being bred just for kept in a
cage and then systematically killed, with no feeling, no warmness in your life
ever ?
~~~
supreme_sublime
Plants aren't capable of running away. I really don't see this as much of an
argument. Then again, I don't know if I agree that "plants feel pain" either.
I'm not necessarily a huge fan of factory farming, but if people want to be
able to buy meat at any time, I don't really know much of a way around it.
Though ranching still exists, there are plenty of ranches with heads of cattle
that graze freely and eventually are taken to slaughterhouses.
If we did end factory farming, it wouldn't be as simple as just releasing
these animals into the wild either. If we did they would very likely die of
starvation. So we're talking about a generation of cattle/chickens that would
basically need to be killed off so we didn't mess up the environment with a
massive population explosion it couldn't handle.
On top of all of that, you are acting as if these animals are capable of the
kind of thought that you and I are. They can think about their future, what
their eventual fate is. This is fallacious. While animals may show signs of
intelligence, there is no evidence of any kind of consciousness similar to
ours.
This can even be evidenced through humans. People used to think that deaf
people were mentally retarded in some way. Hence "deaf and dumb", however a
lot of them were simply missing language. Language is extremely important as
it not only allows for group cohesion, it also makes inner dialogue possible.
While animals may have some basic kind of communicative capabilities, it is
nothing on the level of humans. So without some kind of language, even if
they're theoretically capable of cognitive thought, they can't have the same
kind of existence as us.
[https://www.verywell.com/deaf-history-deaf-not-
retarded-1046...](https://www.verywell.com/deaf-history-deaf-not-
retarded-1046548)
Edit: Another link [https://neuroanthropology.net/2010/07/21/life-without-
langua...](https://neuroanthropology.net/2010/07/21/life-without-language/)
~~~
inDigiNeous
Have you ever watched an animal in the eyes? Can you not see consciousness
there ? This is the same as thinking that animals don't have feelings. What
about dogs, have you not seen dogs doing kind things ?
Killing an generation of animals for food is much better than raising hundreds
or thousands of generations in captivity for the times to come.
------
justanotherjoe
> Moreover, the notion that fish do not have the cerebral complexity to feel
> pain is decidedly antiquated. Scientists agree that most, if not all,
> vertebrates (as well as some invertebrates) are conscious and that a
> cerebral cortex as swollen as our own is not a prerequisite for a subjective
> experience of the world
Do scientists (some? most? few?) really agree that all animals are conscious?
Or is the writer just interpolating? Would really like the writer to back this
one up...
~~~
mannykannot
The issue is inescapably tied up with how you define consciousness. Note that
it is not generally considered to be synonymous with self-consciousness.
------
danieltillett
Of course they do else they would not avoid things that damage them
physically. Even amoebas "feel" pain.
The important thing is not if something feels pain, but where we draw the line
in regards if an animal's pain is more important than our pleasure. It does
not take much human pleasure to make a few hundred million ameoba suffer,
while it had better be pretty large to make a chimp suffer [1].
1\. I am using pleasure here as shorthand for anything desired or beneficial
for humans.
~~~
misja111
I don't see any rational ground to make the suffering of an amoeba a million
times less relevant than the suffering of a single chimp.
Of course there is the irrational ground that chimps look similar to us and
therefore we find it unpleasant to think about the fact that they are
suffering. So in the end it is all about our pleasure and nothing else. The
tradeoff is between the amount our pleasure we get and for which it is
unavoidable that the animal suffers, against the amount of our pleasure it
costs because we feel sympathy for this particular animal race.
~~~
danieltillett
There is none, but that doesn't change that we need to make this decision.
Your body kills millions on amoeba every day just to stay alive. Ultimately
the tradeoff between human pleasure and animal suffering is arbitrary and set
by society and personal preference.
The only reason I chose chimps is I rather like them so it would take a lot
for me to hurt one. Equally, I don't like Bullrouts [1] (having been poisoned
by one) and I would not be upset if they were all to die a slow and painful
death.
1\.
[https://en.m.wikipedia.org/wiki/Bullrout](https://en.m.wikipedia.org/wiki/Bullrout)
~~~
pessimizer
I think the only problem with that criterion is that it doesn't work for
Azerbaijanis and Armenians.
------
saiya-jin
why is anybody surprised? if any complex organism has nervous system, this can
transfer all kinds of information including pain.
it's a clear evolutionary advantage. we have it, so do other living organisms
in one way or another. I wouldn't be surprised if ie ants had some very
similar highly unpleasant feedback from their injuries to drive them away from
cause of it.
are we really that dumb that if we don't hear human voice scream in horror,
then we consider that all is good?
------
wiz21c
Could we agree once for all that we are predators in a food pyramid and that
this naturally implies that we kill to eat. Now, as a sentient species, we
might try to kill in a more acceptable way (for the victim), but that won't
change much to the result : we kill.
~~~
cageface
Humans are omnivores with a physiology primarily geared towards eating &
digesting plants. We can eat animals but we absolutely don't _need_ to to live
a long, healthy life. So it's really a matter of how much you value your own
pleasure & taste over another creature's suffering.
~~~
leadingthenet
There’s still a significant difference between eating meat less often and
abstaining from meat and other animal products completely, isn’t there?
~~~
cageface
Yeah sure. The suffering you cause is proportional to how much meat you eat.
If quitting it entirely is too big a step for you then try scaling it back.
Even a single meat-free day a week is a good place to start. You may find you
don't miss it as much as you think you will.
~~~
Valmar
> The suffering you cause is proportional to how much meat you eat.
Oh really? Sounds like ideology more than fact.
Are you really insinuating that plants don't feel pain? Because they certainly
do. Look up Cleve Backster's research on plants.
~~~
cageface
It takes 7-10 kg of plants to produce one kg of meat, so you're causing that
much more suffering even if you are willing to claim that plants suffer as
much as we do from pain.
~~~
Valmar
Then we just need to feed the animals their natural diets instead of the
abnormal, unnatural diet of grains and soyabeans that most factory-farmed
animals are currently fattened on.
Solution doesn't seem that difficult to me.
~~~
cageface
If we do that then we can all eat meat about once a week. And anyway the ratio
of plants eaten to meat produced would be about the same so no gain there.
------
hathym
Nothing compared to duck pain in France.
| {
"pile_set_name": "HackerNews"
} |
Tech's Embrace of Remote Work Sends San Francisco Rents Plunging - blinding-streak
https://www.bloomberg.com/news/articles/2020-07-01/tech-s-embrace-of-remote-work-sends-san-francisco-rents-plunging
======
blinding-streak
[http://archive.vn/zMEsV](http://archive.vn/zMEsV)
| {
"pile_set_name": "HackerNews"
} |
Generative Machines - Rexxar
http://workshop.chromeexperiments.com/projects/machines/
======
pav3l
Relevant blog post by the author:
<http://mflux.tumblr.com/post/29879318929/generativemachines>
| {
"pile_set_name": "HackerNews"
} |
The history of American Football - vijayboyapati
http://www.radiolab.org/story/football/
======
vijayboyapati
I found this super interesting, especially the stuff on the early evolution of
the game and how various cheating ("trick") plays were used, such as hiding
the ball under a player's jersey and running away with it, or suturing ball
like patterns on the jerseys of players so it wasn't obvious who was carrying
the ball.
| {
"pile_set_name": "HackerNews"
} |
The Oculus Rift Made Me Believe I Could Fly - LiveTheDream
http://www.wired.com/2014/08/oculus-rift-birdly-fly/
======
vanwesson
> The consumer version of the Rift should be out in about a year.
Yeah, and will I be able to buy one and use it without Facebook keeping a
permanent record of everything I do with it (tied to my real name of course)?
Will it refuse to work unless it's online? I was really looking forward to the
Oculus, but man ... if there is an alternative that doesn't have FB
integration, I think I'll buy that instead.
~~~
TD-Linux
Sadly, the license of the library used to talk to the Oculus Rift (libOVR) is
also under very restrictive terms - you can't use it with competing systems,
can't distribute it in part, and lose the license if your users have health or
safety issues with your product.
With the source code available, it's hard to make a clean-room reverse
engineered version of the hardware communication layer and shaders.
I haven't actually seen the source code, so maybe me and someone with a DK2
could do it by sniffing USB packets.
------
pinkyand
I wonder, what do you guys think virtual reality do to the tourism industry ?
~~~
corysama
VR won't replace going there. But, it's a huge improvement over not going
there. In practice, saying "Most people do not go to most places." is a bit of
an understatement. Therefore, VR can be a huge improvement for most people.
~~~
jonmrodriguez
Completely agree. My grandma is afraid of driving & flying but she loves to
watch travel TV shows. I think a VR headset with travel content would be great
for people like her and would really improve her quality of life.
------
WordBiLLY_maker
This is pretty neat. What other potential, non-gimmicky solutions could be
built with VR this way? What about 10 years from now?
Also, who remembers the movie: FireFox, with Clint Eastwood? :)
~~~
kendalk
"You must think in Russian... You must think in Russian. Do you think you can
do that, Mr. Gant?"
~~~
WordBiLLY_maker
Haha, Yes! Thanks. That post make me smile; well done Madam/Sir.
------
joeevans
Correction:
Virtual reality goggles and the Birdly apparatus made them think they could
fly.
The copious references to Oculus make me think the Facebook PR team have swung
into action, to try to bolster waning interest in Oculus after the disastrous
sellout to Facebook.
I'm eagerly awaiting an Oculus alternative, having canceled the DK2 plans. I
don't really want to be tying my code into the horrendous Facebook codebase
and agenda.
------
spyder
Video: [http://vimeo.com/91069214](http://vimeo.com/91069214)
------
bluthru
Has anyone SCUBA dived with an Oculus Rift yet?
~~~
sanoli
Will probably be awesome too. However, actually going scuba diving, for real,
is much easier than going on a flight like that. Closest thing is probably
hang-gliding, which is much more dangerous than scuba diving.
~~~
silencio
I can't go scuba diving at all, so I would especially love to see it. To me it
has a different kind of thrill/interest factor than flying or hang-gliding
anyway.
------
tzs
Birds are for wimps. Make it do a Night Fury.
| {
"pile_set_name": "HackerNews"
} |
Next-react-analytics – A react analytics library - kushalvm
https://www.npmjs.com/package/next-react-analytics
======
kushalvm
Next-react-analytics - An analytics library for React that's utterly butterly
simple.
I've been delaying writing about this first open source I wrote. To improve
the readme, demo, articulate it better somewhere, improve the publish process
etc etc. But there is a lot of work which will keep me busy for next few
months and there's no good time to share. Doing it now post midnight. :)
So, here's an analytics library that works with Redux events out of the box.
Declare one event listener for all your redux events and it will trigger the
code you write inside it. Yes, that's right. That ridiculous!
A quick example of a universal event listener
```function getQuoteListener(event, eventsHistory){
window.dataLayer.push(event); return event; }```
What about specific event types? Don't worry, got all covered. Readme will
uncover more
It's very specifically tied to redux actions so far. So if your application is
structured in a way ( should be if you use redux ) it would sure be helpful
for you.
Please share your feedback. I'm excited about it as my first open source
release.
Links-1. [https://www.npmjs.com/package/next-react-
analytics](https://www.npmjs.com/package/next-react-analytics)
2.[https://github.com/kushalmahajan/next-react-
analytics](https://github.com/kushalmahajan/next-react-analytics)
#react #analytics #opensource #javascript #library #engineering #turtlemint
| {
"pile_set_name": "HackerNews"
} |
One fast vaccine strategy could protect against Ebola, H1N1, and more - jseliger
http://arstechnica.com/science/2016/07/new-vaccine-method-could-allow-quick-development-target-multiple-diseases/
======
TheMagician0
Would sure hope that this vaccine will prevent
[this]([http://www.metaculus.com/questions/195/will-the-next-
ebola-o...](http://www.metaculus.com/questions/195/will-the-next-ebola-
outbreak-kill-less-than-1000-people/)) to resolve positively.
| {
"pile_set_name": "HackerNews"
} |
HN: Please add Reddit style collapsible comments - AndyKelley
It could be much, <i>much</i> easier to browse HN if we could hide subtrees of comments the same as works on reddit.<p>It's a huge usability problem.<p>It's dead simple to program.<p>Please?
======
MaxfordAndSons
Yea it is rather frustrating when the top comment spawns an enormous
tangential discussion and you have to scroll through it; it doesn't help that
there are no indent guides to at least make it easier to tell when you've
finally scrolled to the next top level comment. And all this is doubly
annoying on mobile.
~~~
Normal_gaussian
I do not want collapsible comments - I feel that this encourages "skipping"
over discussion (which helps polarise and lower the quality of the entire
thread)
Indent guides? Yes please. I often find myself wanting to find and read all
the replies to a particular comment (it is often posing a question or
defending an opinion I find questionable).
~~~
nazka
Agree with that. I wanted this feature for a while but after thinking about
it, I think that it would be bad. It would change the focus on the first,
second, and slightly third comment where all the other comments in the trees
will be disregarded. But right now each comment is valued and has its place.
There are less focus on the last leaves but it's still great.
If it's done, the first comments will have all the attention plus it will
engage to a race to have the best first comment. We want to seek to engage
people with real thoughts and deep discussions, regardless their position
here. I have read so many long and great conversations between highly skilled
persons, it's so valuable. We have to keep it like that.
~~~
nazka
So I am downvoted after taking the time to write a constructive reply and the
person doesn't even reply? That's great...
~~~
tripzilch
Isn't it really great how we can now have this totally tangent discussion on
how you got downvoted, _right in the middle_ of the gigantic singular top-
comment dumping ground that always appears on HN discussion threads?
Please, do go on :)
------
ghayes
To all the top level comments about browser extensions, I want to use HN on
mobile without an app. It's not possible due only to collapsibility. Comments
sections are effectively top-comment-only.
~~~
threeseven37
If you don't mind me asking, why don't you want to use an app?
~~~
prplhaz4
Because I already have an app for that - the web browser, and it works great
with countless other services I use on a daily basis.
------
mratzloff
While we're wishing, I wish:
\- Arrows indicated which way I voted instead of disappearing completely.
\- I could change my up or down vote on a comment after making it. When
viewing on a phone it's easy to fat finger the wrong arrow. If there's a
concern about changing votes long after a discussion, gate it by time.
~~~
yoha
Agreed for the ability to change vote. This is most likely due to the way the
buttons work (see
[https://news.ycombinator.com/item?id=11307758](https://news.ycombinator.com/item?id=11307758)),
so as to keep the code as tight as possible.
------
chollida1
I'd also like to see a "hide" button on each story so I can filter out stories
that just aren't interesting to me.
I get that "Left-pad as a service" is interesting to many people here(182
comments at the moment), but I've never really done any web development at all
in my life and I am never really going to be interested in any javascript or
node.js link.
Similarly I'm guessing most people won't care about my favorite topics
quantitative finance or algorithmic trading.
It might cut down on the weekly posts where someone complains that HN is going
to shit because a story made the front page and they just can't believe
someone would find it interesting.
~~~
dsr_
Oh. Are you interested in security? Deployment? Or "idiotic practices that are
apparently widespread but only coming to light in the wake of a disaster"?
Because that's what that story is actually about.
~~~
jonahx
While you're correct about npm story, I think the grandparent has a valid
point. Not everyone is interested in every story, and the ability to hide
would be a nice enhancement.
~~~
Normal_gaussian
Ironically the posts I am least interested in are the ycombinator posts.
However I assume hacker news is rendered on the server incrementally (anyone
have any links on this?) so hiding links will simply reduce the number you
see.
------
thoughtpalette
Beautiful HN Chrome plugin UI, supports:
\- Improved readability design
\- Retina screen support
\- User following
\- Super fast inline replies
\- Quick profiles with social network info when hovering over usernames
\- Filtering of stories based on terms and phrases / domain or user
\- Endless scrolling
\- Collapsible comment threads
\- Direct link to Google Cache version
\- Social sharing for Twitter, Facebook, Google+, Buffer
[https://chrome.google.com/webstore/detail/hackernew/lgoghlnd...](https://chrome.google.com/webstore/detail/hackernew/lgoghlndihpmbbgmbpjohilcphbfhddd)
(not affiliated in any way with this, just love it)
~~~
shostack
I always wonder what level of security and data transparency exists behind
things like this. Are there any real risks to using something like that?
~~~
jeremyw
This one happens to be open source
([https://github.com/tommoor/HackerNew](https://github.com/tommoor/HackerNew)),
but you can always unpack plugins, take a look at their Javascript, and if you
don't like what you see, repack with your own modifications.
~~~
ryanisnan
I absolutely understand the notion that being open source makes it
significantly more difficult to hide devious code, but let's be realistic. If
you had to scrutinize every piece of OSS for something malicious, you would
never get anything done.
------
55555
It's not a straightforwardly positive UX decision. Allowing people to hide
conversation trees they are not interested in has other effects. It would
reduce discussion. the current setup promotes constructive disagreements.
We already hide things if our collective mind thinks it's a bad idea, but I'm
not sure it's beneficial to let this occur on an individual basis.
If everyone thinks what I am saying is wrong, then this comment will get
whited out and sent to the bottom, but if only you think it's dumb, maybe you
should still have to read it.
I kinda like the current way.
~~~
bargl
I actually find I get into more discussions by using a plugin that allows me
to collapse so that I can comment on lower threads because I can actually get
there when I'm interested. It really should be built in though.
~~~
Normal_gaussian
I disagree. Often the most insightful comments lie a few posts into a comment
I disagree with. When browsing on reddit I would have already collapsed the
thread.
When I am genuinely not interested I don't have any problem scrolling down.
------
DougWebb
I can see why collapsible sub-trees aren't _quite_ dead-simple. The comment
list is a single table, and each comment is a separate row. There's no
container around a comment's children. (Also, the indenting is implemented by
putting a 1x1 image in the first column and setting its width based on the
indent depth required.)
Internally, there's obviously tracking of parent/child relationships, but
adding container elements so that the children can be hidden would require
getting rid of the table-based layout and replacing it with a nested div-based
layout. The markup and styling changes would be fairly simple, but none of us
know what the impact is on the backend, or on anything that depends on the
markup structure that may or may not be in HN's control. My guess is that
these non-technical impacts are the driving force behind keeping the markup as
it is, which prevents the kind of features you want.
~~~
pas
Find the row clicked on.
Find the indent.
For every row that has larger indent (until one with the same indent), set
display: none.
For this row, mark it collapsed (even by putting a div around the current
content, un-displaying it and putting a "show thread" button/link there).
So indent is width of the "invisible pixel", easy to query, isn't it?
What am I missing?
------
andrewflnr
You can actually beat Reddit's UI on this: save collapsing state across page
loads. It's quite annoying on mobile to open a link on reddit, come back and
be forced to reload the page, and then be presented with the same wall of
irrelevance I closed up a minute ago.
~~~
Namrog84
With res. Or at least for me. It's saved. Sometimes i go to comments thinking
I haven't even and find my already collapsed comments and realize I just
forgot I already read comments for this post
------
tkel
I recently made a firefox addon to do just this, called HN Collapse.
Here it is: [https://addons.mozilla.org/en-US/firefox/addon/hn-
collapse](https://addons.mozilla.org/en-US/firefox/addon/hn-collapse)
Also on github: [https://github.com/tomkel/hn-
collapse](https://github.com/tomkel/hn-collapse)
~~~
alecco
Good man. I was going to suggest a RES-style extension.
------
simonswords82
While we're suggesting improvements...
Why is it that the discuss option isn't available on posts that are job
adverts?
I think it would be useful/interesting to allow casual conversation about job
postings.
------
yoha
It _really_ needs some polishing, but I am using a handcrafted UserScript [1]
that lets me navigate comments with the keyboard (j/k as well as p/g/J/K),
fold/unfold (m) and vote (a/z). Also some styling to ease reading (larger
font, indentation marker). However, the "reply" (r) feature is not complete
(i.e. broken), "last" (G) shortcut fails for some reason and flagged comments
break the navigation.
If you look in the relevant folder, you may notice it was initially designed
for Word Press (WP.user.js), more precisely SlateStarCodex, and seems to work
for most such blogs. SSC.user.js is just meant to improve the styling of
SlateStarCodex.
[1]
[http://sinon.org/userscripts/HN.user.js](http://sinon.org/userscripts/HN.user.js)
~~~
tedmiston
I'm late to party, but Premii's HN client has collapsible comments and
keyboard navigation.
[http://hn.premii.com/](http://hn.premii.com/)
------
znpy
I think users should be able to flag a certain subtree of the comments tree as
"off-topic" or "tangential" so that after a certain flag threshold such
subtree is automatically shown as folded, and users would be able to see the
most related comments first.
------
nexxer
Firefox extension to collapse comment trees: [https://addons.mozilla.org/en-
US/firefox/addon/hn-utility-su...](https://addons.mozilla.org/en-
US/firefox/addon/hn-utility-suite/)
------
Grue3
I never used collapsible comments on reddit. By the time you're reading deep
into a branch and decide that it's better to skip it, you already too far from
the comment that started the branch. It's actually more difficult to scroll
back and click collapse than scroll forward until the next top-level comment.
~~~
justJanne
There are subreddits with a CSS that fixes that issue.
Take
[https://www.reddit.com/r/geopolitics/comments/4a46s0/china_h...](https://www.reddit.com/r/geopolitics/comments/4a46s0/china_hinted_that_the_country_will_plan_more/d0ykz8x?context=9)
– the indent markers at the left actually allow to collapse that comment
------
bryanlarsen
Here's another one, which works with the awesome hckrnews.com:
[https://chrome.google.com/webstore/detail/hckr-
news/mnlaodle...](https://chrome.google.com/webstore/detail/hckr-
news/mnlaodleonmmfkdhfofamacceeikgecp)
------
logn
This is Hacker News. JavaScript should be added by users as a browser
extension. Only requests to make the website more user-serviceable such as
class names and element names/IDs should be considered.
------
mpwoz
I actually got frustrated enough with this a few weeks ago to write a quick
extension that lets me jump between comment trees:
[https://github.com/mpwoz/jumper](https://github.com/mpwoz/jumper)
It's very lightweight and doesn't clutter up your screen with an icon since
that's literally the only use case. I haven't gotten around to publishing it
on the web store yet unfortunately so you'll have to install manually.
------
bkyalpl
Until implemented on
[https://news.ycombinator.com/](https://news.ycombinator.com/), try
[https://hn.premii.com/](https://hn.premii.com/) which has collapsible
comments. The web and mobile apps are open source[1].
1 : [https://github.com/premii/hn](https://github.com/premii/hn)
~~~
bkyalpl
Another option is [http://hackerwebapp.com/](http://hackerwebapp.com/). By
default, top-level comments are displayed without replies expanded.
------
alpb
Check out "Hacker News Collapsible Comments"
[https://chrome.google.com/webstore/detail/hacker-news-
collap...](https://chrome.google.com/webstore/detail/hacker-news-
collapsible-c/hockhafcdegocajmjhafgjncjpodihkd) if you don't want too many
changes that come with the Enhancement Suite.
------
pdkl95
[https://greasyfork.org/en/scripts/12493-hacker-news-
folding-...](https://greasyfork.org/en/scripts/12493-hacker-news-folding-
subtrees)
I wrote this userscript a while ago.
edit:
In light of the left-pad brouhaha, maybe I should mention that my userscript
doesn't have any dependencies - not even an embedded jquery.
------
oolongCat
I use this [https://chrome.google.com/webstore/detail/hacker-news-
collap...](https://chrome.google.com/webstore/detail/hacker-news-
collapsible-c/hockhafcdegocajmjhafgjncjpodihkd?utm_source=chrome-app-launcher-
info-dialog)
------
bottlerocket
If you're on Chrome: [https://chrome.google.com/webstore/detail/hacker-news-
collap...](https://chrome.google.com/webstore/detail/hacker-news-
collapsible-c/hockhafcdegocajmjhafgjncjpodihkd)
------
moondev
[https://chrome.google.com/webstore/detail/hacker-news-
enhanc...](https://chrome.google.com/webstore/detail/hacker-news-
enhancement-s/bappiabcodbpphnojdiaddhnilfnjmpm)
------
joshuahutt
I like using this site to browse HN:
[http://insin.github.io/react-
hn/#/story/11355038?_k=sv2c3d](http://insin.github.io/react-
hn/#/story/11355038?_k=sv2c3d)
------
SuperKlaus
This is a great Chrome add-on that lets you collapse comments:
[http://gabrielecirulli.github.io/hn-
special/](http://gabrielecirulli.github.io/hn-special/)
------
harisamin
I built a Mac native desktop HN client. I don’t have collapsible comments yet
but its on the way :) [http://mackernews.com](http://mackernews.com)
------
fidraj
I use this
[https://cheeaun.github.io/hackerweb/](https://cheeaun.github.io/hackerweb/)
------
sidcool
Please. :( I will pay for it.
I don't trust plugins and extensions.
------
anoother
Dear HN: Please don't. Your design is perfect.
------
ytrix00
If you decide to implement collapsible comments, then please make them
expanded if Javascript is disabled.
------
bsmartt
Does this site get updated on any regular basis? It doesn't feel like it it's
ever changed.
------
atroyn
This is a particular pain on mobile, because a given thread tends to be much
deeper to scroll past.
------
f137
Yes, please do it
------
slantaclaus
PLEASE
------
notliketherest
Hacker News Enhancement Suite works wonders
[https://chrome.google.com/webstore/detail/hacker-news-
enhanc...](https://chrome.google.com/webstore/detail/hacker-news-
enhancement-s/bappiabcodbpphnojdiaddhnilfnjmpm?hl=en)
~~~
ihuman
I personally use "Hacker News Collapsible Comments"[1], but it breaks whenever
they add the black bar to the top of the site.
[1] [https://chrome.google.com/webstore/detail/hacker-news-
collap...](https://chrome.google.com/webstore/detail/hacker-news-
collapsible-c/hockhafcdegocajmjhafgjncjpodihkd)
~~~
elliotec
What is that bar at the top for anyway?
~~~
stevekemp
It is added when somebody "noteworthy" has died.
------
ebbv
This is well worthwhile, since it would help combat "top comment discussion is
the only discussion" disease.
------
Laaw
There's a philosophical reason for a cumbersome UI, and it revolves around the
idea that comment volume should overall remain somewhat low.
It _should_ be hard to manage tons of comments on a story, because it lowers
the overall comment count.
I'd love to see some A/B testing on this.
~~~
function_seven
I understand the philosophy, but the law of unintended consequences means that
the comment threads are only about whatever the top commenter brought up.
For example, let's say the article is "Scientists discover new material that
boosts solar panel efficiency by 16%". The top comment might be, "This does
nothing to alleviate the base-load problem. We still need better battery
technology".
Well now the comment section for me is all about battery chemistry, battery
manufacturing news, hydro-pumping as a means of storage, etc. All because the
top comment spawned its own mega-thread that pushes relevant (to the story)
comments off the bottom.
~~~
Laaw
Maybe that's okay, or at least an acceptable consequence.
------
beachstartup
no, i disagree strongly.
i despise reddit's collapsible / half-loading comments. on large threads it
loads the same 10% every single time and hides a lot of the good responses.
just give me all the comments in one shot. i'm a big boy, i can handle
reading.
~~~
thex10
it's _not_ given to you 'all in one shot' though. the 'top' comment is first,
along with all of its responses, then the second top comment, and so on.
you'll still miss many good responses because you won't scroll through
hundreds of comments (which can be very lengthy on a mobile screen).
also let's not conflate collapsible and half-loading. this thread is not
advocating partial loading. you dont need partial loading of comments in order
to enable collapsible functionality.
~~~
beachstartup
sometimes i start at the bottom and scroll up. i might be weird.
------
logicrook
Are you too lazy to roll your own Greasemonkey script if it's such a problem
for you? Are you just on HN to lose time, or too learn how to hack things?
------
btbuildem
Short answer is that the legacy codebase can't handle that. Most people use
various browser extensions to help with HN usability issues.
| {
"pile_set_name": "HackerNews"
} |
Richard Dreyfuss' dramatic reading of the iTunes EULA - iwwr
http://www.cnet.com/8301-30976_1-20068778-10348864.html?part=rss&tag=feed&subj=Crave
======
DanielStraight
The "termination" one highlights a particularly absurd aspect of the EULA. You
are supposed to do something specific on termination of the license, but they
aren't required to tell you it's terminated?
------
peterwwillis
Can you imagine if companies did this regularly? If people actually "listened"
to what they're agreeing to when they use common software? They might actually
look for alternative software.
New idea: A table on Wikipedia of software and the rights you give up by using
it, compared to Free software and the rights you retain.
~~~
mirkules
"New idea: A table on Wikipedia of software and the rights you give up by
using it, compared to Free software and the rights you retain."
IMO, an obscure table on Wikipedia is not going to make anyone stop using
software. EULAs were designed to make people "click through," and even if they
DID read them, they generally wouldn't care if the software did what they
needed it to do. I propose instead that whoever is interested in making Free
software that they make quality software that people want to use. Apache,
Firefox, and FileZilla are good examples of this (ok FileZilla may be
stretching it, but see below). GIMP and OpenOffice are not.
Personally, I will jump through _some_ hoops to get stuff working, but if it
seems like it's going to be a time-sink just to edit a photo, open a .docx
file or some other trivial task, I'm going to download and use whatever gets
me there faster. I might get downvoted for saying this, but I'm just not going
to waste my time configuring half-baked software when there are quality
commercial alternatives available (and same goes in reverse, in the case of
Apache, for example).
~~~
s-phi-nl
In complete honesty, what are some of the weaknesses of OpenOffice? Lest I
seem like an OpenOffice fanboy, I will say that I expect that I will agree
with a number of its weaknesses, but simply be unaware of them since I have
not used Microsoft Office much since moving to Linux a few years ago. One
weakness I do know of is that its .doc converter is not perfect.
~~~
netcan
IMO, its main weakness is that it feels like an outdated version of MS Office.
It also makes users need to think a little but more. For example, it
encourages you to make an informed decisions regarding your file format
preference and be aware of their consequences with regards to file sharing,
freedoms, etc. Something most users prefer to keep hidden. Spreadsheets and
presentations aren't as pretty and even less pretty when opened in MS which
means OO.org is pretty useless to anyone who uses these for work or school.
Basically its software for people who want free software or for people who
don't want to pay for software, won't/can't pirate it, and either don't mind
tiny inconveniences or have pretty basic needs.
Office is a software package that for many people, represents a big part of
their computer literacy. Being a little different can be the same as making
them a little dumber.
That said, its perfectly fine. IF MS fell off a bridge tomorrow most people
would use it without much issues.
~~~
kissickas
I'll have to disagree with two of those statements. To me MS Office
(admittedly I haven't owned any version since the ribbon toolbar) looks much
worse now than LibreOffice does (and as far as I know it hasn't deviated too
far from OO.o).
As far as the file formats go, I like it to remind me to convert back to .odt
when I'm done using a file in .doc because it uses less of my Dropbox.
However, I've given LibreOffice to both of my parents now and they can barely
tell the difference- once I set their initial preferences it stopped prompting
them about file formats.
~~~
netcan
Sure _you_ do. Most people don't want to know about file formats. Neither do I
honestly. To people who have been using the ribbon toolbar (newer versions),
OO feels like going back. And sure you can give it to your parents or anyone
else, especially for home use. I did say it was perfectly fine.
~~~
kissickas
What I'm saying is that by default it prompts you about file formats, but it's
easy to set it once (as .doc, even) and never bother with it again.
Do you like the ribbon toolbar? I was under the impression that pretty much
everyone hated it. Honest question.
~~~
netcan
Everyone hated it originally. Now people like it. It's just like most changes.
I haven't used it much myself. I usually use Open Office.
Sure, setting is a possible "solution" but that implies there is a problem.
Most people will do fine with it but most people probably also just wish their
son would just install pirated Office for them like their neighbors.
------
leftnode
There's a recent South Park episode parodying the length and absurdity of
Apple's EULA's and terms of agreement. The whole episode is great and does a
pretty good job of goofing on Apple fanboyism.
~~~
brudgers
Link: [http://www.southparkstudios.com/full-
episodes/s15e01-humance...](http://www.southparkstudios.com/full-
episodes/s15e01-humancentipad)
~~~
kleiba
"Due to copyright and other legal reasons, South Park video content cannot be
viewed outside the United States."
~~~
rickmb
Now add the fact that Richard Dreyfuss' fame and fortune comes mostly from the
entertainment industry with its ridiculously restrictive licensing (which
doesn't allow me to see his film work online, since I'm in a "wrong" country),
and the irony comes full circle.
Personally, I'd rather click "Ok" on a absurd (and unread) EULA than to not
have access to the product at all.
~~~
carussell
Your "no access to the product" of course includes a caveat, which is that you
haven't paid for the product.
If you apply the same caveat to the EULA-bound Apple products, the net effect
is the same: "no access to the product".
So no irony here, not even Alanis's flavor.
------
dave84
I imagine this is what Wil Wheaton hears in his head when he's reading EULAs.
With that out of the way, would it be possible to represent EULAs in a simpler
manner while still satisfying a company's legal department?
~~~
scott_s
Probably - there's an excellent Planet Money story on doing the same thing
with credit card agreements. I can only find two segments online. One where
they talk to someone who writes them
([http://www.npr.org/blogs/money/2011/04/21/134633336/why-
are-...](http://www.npr.org/blogs/money/2011/04/21/134633336/why-are-credit-
card-agreements-so-long)), and one where they get 4th graders to read them
([http://www.npr.org/blogs/money/2011/03/18/134664249/the-
frid...](http://www.npr.org/blogs/money/2011/03/18/134664249/the-friday-
podcast-4th-graders-read-a-credit-card-agreement)). That latter links to a
simplified notice.
It takes a lot of effort, and they're only going to do it if required by law.
------
edkennedy
I find the link at the end of the article most interesting of all.
<http://www.thedreyfussinitiative.org/>
~~~
felipe
Richard Dreyfuss is an outspoken civics activist and scholar. I believe he
even lectures at Oxford. And it's no coincidence that he played Dick Cheney on
Oliver Stone's W.
------
pornel
I do not want to accept iTunes EULA, but I feel like I'm blackmailed to do it:
if I don't, I'll loose ability to synchronize/activate/restore my phone, I
won't be able to update or download any applications for it. With cable-free
iOS5 it looks like there isn't even a choice — you either accept iTunes EULA
or you won't get past Welcome screen.
I'm locked-in and I have to perpetually "agree" to whatever Apple comes up
with.
~~~
dspillett
> I'm locked-in and I have to perpetually "agree" to whatever Apple comes up
> with.
If it bothers you, get out before you are locked in further. Stop buying new
content via Apple's store, don't buy any more Apple (or Apple licensed)
products and buy yourself something else to replace the functions the device
has for you.
If the people who don't like being locked in but just accept it anyway and
keep paying, Apple will never change as they won't need to. People like me who
refuse to even join the game obviously don't seem to be a concern for them.
------
cpg
Hilarious. What we need is Shatner reading it, with bongs and all, a la Palin
<http://www.youtube.com/watch?v=vpbSwSlP4Yc>
<http://www.youtube.com/watch?v=2mLvzARScak>
------
michaelfeathers
I'm aching for someone to put a dub beat behind this, bongos, or some Greek
Bouzouki.
~~~
duggan
How bout this - <http://soundcloud.com/rduggan/richard-dreyfuss-battle-cry>
------
itswindy
Stop bashing Apple if you are using a MAC. Read its EULA, you agreed not to
say anything bad about Apple when you first bought your Mac. :)
God knows what I agreed to when I installed XP.
------
danssig
So when is he doing one for MS, Adobe, Oracle, ....
------
pama
Excellent! This is the best answer to the question: "Who reads the EULA?"
------
napierzaza
Does he take requests, I'd like to hear him do the "Think Different" ad again.
| {
"pile_set_name": "HackerNews"
} |
Follow-up: Mozilla's stand on H.264 as ActiveX analogy - sax
http://weblogs.mozillazine.org/roc/archives/2010/01/activex_all_ove.html
======
blasdel
How about a more relevant analogy to Flash? It has the same insecurities and
platform-dependence plus being encumbered by the same patents (and more!), but
Mozilla took exactly the opposite approach!
Since 2004, Mozilla has had baked-in support for automatically installing
Flash on the first encounter if the plugin is not found. A nice little yellow
infobar pops down (a brilliant UI innovation), prompting you to install it
with a few clicks, even without root access on both Windows and Linux.
They've also recently implemented automatic update checking for Flash. Since
it's their biggest security hole, they throw up a big nasty "update now"
warning on launch if you're using a known-vulnerable version. Mozilla even
initially distributed the Flash binaries under license themselves via
addons.mozilla.org -- I'm not sure if they still do so.
Flash is shitty, nonredistributable, closed-source, restricted-platform,
proprietary, and patent-encumbered but they're willing to go to great lengths
to help their users use it. Why not do the same thing for ffmpeg, which is
merely patent-encumbered?
~~~
tl
Read the comments from:
[http://weblogs.mozillazine.org/roc/archives/2010/01/video_fr...](http://weblogs.mozillazine.org/roc/archives/2010/01/video_freedom_a.html)
Robert's opinion is that flash is equally evil, but dropping it would be even
more damaging than never supporting h.264, so the damage is already done.
~~~
sayrer
to be fair, he did pretty much copy/paste his comment from there to here. :)
~~~
blasdel
And that one was a copy/paste from my late comment here:
<http://news.ycombinator.com/item?id=1071727>
------
s3graham
The connection between Mozilla not supporting ActiveX and the rise of Apple,
iPhone, phone browsers, and ChromeOS is tenuous at best.
~~~
DougBTX
<http://it.slashdot.org/article.pl?sid=07/01/26/1455224>
------
bobbyi
I don't see how the web browser is the right place for codecs to live. I have
multiple web browsers and multiple media players installed. Do I need six
copies of every codec?
~~~
duskwuff
And that's part of the problem too. The Mozilla devs have made it next to
impossible to plug in a video decoder to replace the embedded one, so there's
no way to just punt the decision to the OS by passing the video to DirectShow
/ QuickTime / gstreamer / etc. It's Theora or nothing.
~~~
geocar
Dirac stands a good chance of being added in the near future.
It seems it would be a weekend task to add a mozilla extension that replaces
<video> with embedded Microsoft Windows Media Player <object> tags, and the
necessary scripting hokum.
~~~
duskwuff
Entirely doable, but <object> doesn't expose the same scripting APIs that
<video> does. So, for instance, you will get a playable video in YouTube, but
none of the YT buttons will work.
~~~
geocar
The YT buttons could be made to work because there is an analog for them, for
example: document.getElementById('video').controls.pause(); does what you
would expect.
See: <http://msdn.microsoft.com/en-us/library/dd563945(VS.85).aspx>
------
lispm
If they make a compromise, they should drop Flash and support H.264. I would
prefer THAT choice. Flash is buggy, slow, unsecure, proprietary from a single
vendor. H.264 is much more useful, has a standard, multiple implementations
(hardware and software)...
------
ubernostrum
All of this is rather ironic coming from a browser which isn't Free (just ask
Debian about that...).
~~~
blasdel
While I agree with you, you might ask the same of Debian's swirl logo. Both
parties were rather petty and hypocritical.
| {
"pile_set_name": "HackerNews"
} |
New Social Media Platform - auxopro
Hello we are creating a Social Media Platform focused on a modernized Bulletin Board.<p>We will be hosting a private Beta Testing session this July. Testers will trying out our platform, starting discussion threads, writing aritcles, and earning Award to Unlock features.<p>If you are interested in being the first to try out our Media Platform, please sign up at
http://www.auxopro.com/ej<p>Thanks!
======
auxopro
You can check out more information at www.auxopro.com
| {
"pile_set_name": "HackerNews"
} |
Using monadic effects in haskell to reverse a mergesort - maxcan
https://github.com/DanBurton/Blog/blob/master/Literate%20Haskell/recovery.lhs
======
maxcan
one of those cool little haskell mindbenders
| {
"pile_set_name": "HackerNews"
} |
Ask HN: How to deal with big existing code base when you are new to the team - maheshs
Context - I am just starting with a team as a new member which have huge ReactJS code base. I have only basic understanding of ReactJS.<p>Is there any mental modal, tips, experience which I can follow to speed up my understanding of framework as well as code base and start contributing ASAP?
======
machiaweliczny
Start with understanding what business problem the app solves.
Understand roles in application (admin, user, etc.) Click through the
application, do list of all URLs/pages, describe what you think it does and
consult with PO/team to clarify understanding.
Then learn where data comes in/out and in what format. Study schema of
database (hint: ERD diagrams). Then study business API (schema, endpoints,
graphiql).
Then you can move to frontend. Frontend is easy after you understand all above
:P You will basically know what it does/should do, so you don't even need to
read code.
React code is very modular so it's easy to navigate, to find where to start
simply use React Devtools (shows component name on hover), then you should be
able to navigate rest of code via IDE/editor.
If codebase is of high quality it should also have React Styleguidist or
Storybook with most components to play with.
To understand react it's best to write it yourself:
* https://jasonformat.com/wtf-is-jsx/
* https://dev.to/ameerthehacker/build-your-own-react-in-90-lines-of-javascript-1je2
* https://pomb.us/build-your-own-react/
------
seibelj
Get the application working locally. You will likely find a lot of old half-
written doc that doesn’t work anymore, and other developers have tricks and
changes they made on their local machine to get things running. You should get
it all running yourself and document what you did for the next developer.
~~~
thescriptkiddie
My team's code hasn't been able to run locally for at least 7 years. All
development consists of committing changes to SVN trunk and running a Hudson
build to update a shared dev server. We have hundreds of commits per day,
mostly with unhelpful messages like "up".
halp
~~~
kls
I cannot agree with the GP post more, you should be able to reproduce a
working environment from source and environmental config. If you cannot you
may want to try getting your team and your management to see the value in
investing in doing so. When I took my latest contract, I literally walked into
an environment where developers where pushing to the same server, debugging on
the same server and generally stomping all over each other. I felt like I was
developing in the 90's all over again. They did not see that it was a huge
productivity killer. I took the time to automate the development environment
to the point where each developer was able to run a script and have a fully
local dev environment. Isolated DB, isolated server, isolated LDAP instance
everything needed to run the environment completely disconnected. It is really
not that hard to go thru the process of setting everything up and capturing
the process in scripts, even something as simple as shell scripts or
powershell scripts are better than having the dev environment fail, and having
to stop progress while everyone scrambles to get an environment back up.
As for the topic at hand, I always find the entry point of the application,
fire up the debugger and walk thru the main workflows of the application. This
generally gives me enough of a mental map of the app to be able to dig into an
area when I get a bug or feature request. The debugger allows you to break on
areas you don't understand and work thru them in more detail.
Total tangent: this is why I detest and will not whiteboard in interviews, I
am a debugger forward developer, it is how I reason about code. I think behind
the compiler (or interpreter) the debugger is the second most important tool
in a developers toolbox. It's sole purpose is to help a developer understand
what is going on at runtime. It is hands down the best way to learn a new
codebase.
~~~
thescriptkiddie
Any advice on what to do if the code is heavily entangled with AWS?
~~~
kls
You should have development or pre-prod versions of your AWS services, for
those areas local dev environments should point to those endpoints. Ideally
each dev would have their own AWS sandbox, but I get it that sometimes that is
an impractical solution so what I would personally do, is create a nightly (or
unstable) instance where one can test their code against the latest code base
and push needed changes to, a stable instance where known stable features and
bug fixes get deployed and then a release instance where testers can test
against items deemed fit to go out in the next release. Developers should
switch their local to unstable and stable endpoints based on their needs as
well as the condition of unstable. If someone breaks unstable, other
developers can still progress against stable they just cannot push to it. So
think of stable as can read but cannot write. Once unstable is back up, they
can push any service changes they need to up to AWS. As a side note, it is the
responsibility of whoever broke unstable to get it back up and running for the
other devs.
------
seanhunter
I don't know ReactJS so the below is just generic advice. That said there are
a few solid starting options that I have used at different times in my career:
1) start with tests - reading existing tests, adding tests, fixing tests which
fail etc. Any of these should really help give you some threads to unpick to
get started in understanding the bigger picture. I don't think I've ever seen
a dev shop where an old hand would turn down a PR review from a new engineer
who was adding new test coverage.
2) start with backlog - try implement some dusty feature from the backlog that
has been sitting there for a while. One place I worked I started with "Convert
100+ functions from deprecated format A to new shiney shiney format B".
Another was "fix the thing which isn't compiling on new platform X". Another
was "fix the millions of warnings we get when we turn warnings on". These are
really unimaginably boring tasks in and of themselves, but focused me on a few
different things which are useful to know early (how to push a PR, how tests
work, how the build infrastructure works etc) and get you started contributing
something useful right away.
3)Start with infrastructure - I like the suggestion which someone else has
made of getting the app to run locally. I would extend that to fixing a piece
of broken dev tooling. If you're infrastructure-minded, this can be a nice way
to start and win you some goodwill with other devs.
Don't think you need to understand everything to make a big contribution
though. A lot of coding isn't about being an expert it's about putting in the
work. Observe code reviews, see what gets merged and in particular make sure
you understand and take on board why PRs get rejected/resubmitted.
One thing to bear in mind is you're going to be a bit of a tax on your
colleagues while getting up to speed. Help them (and yourself) by making your
PRs shorter and simpler initially to make sure you're on track. (eg in the
example above, don't do 100 functions in one pr, do one, submit it, ask for
feedback, then do more).
~~~
seanhunter
oh also look at the repo history to know who the real major contributors are.
You don't want to waste these people's time, but buying them the occasional
coffee and asking good questions can be worth its weight in gold. `git
shortlog -ns --no-merges` is worth looking at.
------
Kagerjay
My coworkers at every new place I work at make jokes at me for doing this, but
I usually identify reference code I can print off right away.
For instance, once you finish a feature or task, identify the most important
bits that happen. Create a gist of it on github.com, then promptly print it.
It needs to fit on one or two pages at most, delete stuff that's not relevant.
Likewise, if you have to learn their styling guidelines and naming, print off
the most important parts.
Stuck on javascript concepts? Print the parts you struggle on. Stuck on
lifecycle methods? Print the diagram. Constantly flipping between jira
tickets? Print them.
The reason why this works is because you apply the concepts of space
repetition to pick things up quickly. Your forced to chunk the code snippets
in print form in a meaningful manner
As time goes on just write reusable code that you can copy later for different
parts of the app. You won't need to print anything anymore because its
commited to memory.
Also I make small side projects with coding patterns I can copy paste easily
too
------
kbrannigan
Start with a small feature. Like a total count. Look what list of objects is
being counted.
Make a note of the object's type.
Find what function is retrieving those objects say A list of users.
What is making the AJAX call to get those users.
Are there any tests?
------
thiago_fm
Take a look at the completed merge requests/features. If any developer of that
team was any good, there would be plenty of well-written merge requests and
commits.
With that, you would know what to touch and when.
When in doubt, check tests, the feature itself and the git history.
If you are new to ReactJS, also try to look for a mentor inside your
company/team. They don't need to to active mentoring, but more like a person
you can fall back to, and that enjoys doing mentoring and does it well.
BTW, Good luck on your new job!
------
danbolt
I'm not familiar with ReactJS, sadly but I often use breakpoint debugging and
IO (eg: print statements, drawing shapes, logging, etc.) to help get a feel
for the common data flow quickly. This lets me make a hypothesis like "when I
click on this button, does this line get hit?" or "does this series of
functions get called?".
Sadly, I'm not 100% what that would look like in your situation.
------
potta_coffee
There are lots of good tips, I'll add mine: I always ask for a few simpler
bugs or small feature requests that I can use to learn the codebase. For me,
it's easier to dive in when I have a smaller surface to focus on.
------
jammygit
I wrote a lot of sequence diagrams for tasks I worked on and saved the
interesting ones. Also, finding somebody senior to explain a module pays off
big time. Also, learn the database schema: all an app really does is
manipulate data
------
AnimalMuppet
Pick a part (like maybe the part that you're first going to have to work on).
Get a tour of that part from someone on the team. Then dive into that part.
When you have questions, ask.
| {
"pile_set_name": "HackerNews"
} |
Guano Islands Act - raleighm
https://en.wikipedia.org/wiki/Guano_Islands_Act
======
spsrich
"Guano?" "Bird Shit, Sir" \--Ripping Yarns: Across the Andes by Frog (1977)
| {
"pile_set_name": "HackerNews"
} |
VPS Compare – compare worldwide VPS servers - rockair
http://vpscomp.com
======
rsync
This is the story of the VPS and how it came to be:
In August of 2001 I was flying from Denver to San Diego to do some contract
datacenter work.
I had a Toshiba Libretto 110CT that was running FreeBSD and I was trying to
troubleshoot an OS config issue, so I tried jail. It gave me a complete, new
FreeBSD system inside of a directory.
Then a lightbulb went on ...
A month later I posted beta invites to the cDc and 303 mailing lists and in
December "JohnCompanies" was born. I advertised almost solely on kuro5hin.org
and grew the company from my apartment in Aspen, Colorado. In February, 2004,
I sold the company.
We called them "server instances", but "VPS" is the name that eventually
caught on.
JohnCompanies still lives on today. Not sure where they'd fit on the "VPS
Compare" list. I see our ad is still up on kuro5hin, if only because Rusty is
too lazy to remove it, after more than 10 years...
The backup system(s) that we built for JohnCompanies customers was reworked
and launched as a standalone product in 2006. You know it as "rsync.net".
~~~
chrisper
Are you the inventor of all virtualization we know today or VPS only?
~~~
justincormack
Virtualization is much older than that - it was invented in the late 1960s, I
believe at IBM.
~~~
chrisper
Seems like IBM was innovative back then. What happened?
~~~
sumedh
Bureaucracy.
------
kijin
Needs an option for less than 1TB of bandwidth. Some of us just want to crunch
data and have no need for such large bandwidth. You even have an option for
1GB disk, so what about adding an option for 100GB bandwidth?
As another commenter has said, cores mean nothing unless they're dedicated to
my VM. There needs to be a better metric, but unfortunately it's very
difficult to "benchmark" a VPS objectively. Any ideas?
Is that 600GB of HDD or 600GB of SSD, or 600GB of SSD-cached HDD? Those are
all very different things, and the little icon to the left of the capacity is
neither noticeable nor searchable.
Big countries like Canada and the United States need to be broken down into
3-4 regions for latency-sensitive customers.
Users should be able to choose the currency. Right now you're second-guessing
the currency based on my location/Accept-Language/whatever and it doesn't seem
to be changeable.
Having a column for the virtualization platform might be useful for some
people. Is it OpenVZ, KVM, Xen-PV or Xen-HVM?
If anyone is looking for cheaper offerings, there's
[http://lowendstock.com/](http://lowendstock.com/)
If anyone is looking for unusual locations, there's
[https://www.exoticvps.com/](https://www.exoticvps.com/)
------
pmontra
The filter by single country is not particularly useful. I'd like to search by
all countries (or checkbox some of them) instead of having to perform N
searches to find who's the best provider.
------
hurin
If you really want this site to have useful rankings for anyone aside from
those looking to pay the bare minimum, consider gathering some additional
information:
a) Uptime statistics
b) Customer-Support ratings
c) Technical ratings (user assessment of various tools provided by the VPS,
ease of migration, etc.)
~~~
moe
This.
Small VPS are dime a dozen on Lowendbox.com. You can grab them for $1 and
below.
They tend to be unstable, slow as molasses, poorly supported, and the hosters
sometimes just disappear overnight (often to relaunch under a new name a few
months later...).
They are almost never worth the hassle since DigitalOcean will sell you a
proper VM for $5.
So _if_ you want to compare them, you need more creative metrics. A simple
"does this company exist for over a year?"-column would already weed out many
of the worst ones.
------
IgorPartola
I would add the option to have sub-1GB RAM VPS's. Lots of them still are
offered in the 512 MB range. Include the option to filter by number of IPv6
addresses offered. Also, add a filter for virtualization technology and if
they use SolusVM or a custom control panel. Otherwise very cool and useful!
------
joshmn
This is cool, thanks and good work. I'd love to see filterable OS support,
multiple IPs, locations... :)
There's also ServerBear.com which is a bit more detailed than this.
~~~
cbhl
public IPv6/IPv4/both...
------
heyalexej
That's a great app. Some ideas:
- I'm currently in Laos, but I think/operate in USD/€, not in LAK. Please give me the chance to decide which currency I want to see.
- 1 GB as the lowest memory threshold leaves out plenty of good deals.
- Sometimes we need a bunch of machines for a short period of time. Can I pay per minute? Hour? Day?
- Which payment methods do they accept?
- Maybe, if possible, the ability to see for how long they've been around. Cheap hosters tend to disappear often.
- Maybe, if possible, uptime stats.
Edit: typos
~~~
tjbiddle
To add to your list: Virtualization type
------
kbenson
Nice! There's a few things I would like to see and be able to filter by which
I can't currently though:
Minimum activity billing period: minute / 15 minutes / 30 minutes / hour /
day, etc.
Provisioning through API: yes / no
Number of geographic locations available (this gets tricky, depending on how
you treat country. Is it locations within the selected country, or total
locations?)
------
dorfsmay
Not being able to scale memory down to less than 1 GB keeps a lot of good
offers out.
Also, missing Atlantic.net (at least in Canada).
------
JimmaDaRustla
I use serverbear.com for comparisons
Will bookmark this one though.
~~~
notacoward
+1 for serverbear
In addition to basic info, it includes things like virtualization type and
even a bunch of benchmarks, all usable as filters or sort criteria. TBH some
of the variation in the benchmark numbers makes me wonder about their
methodology, but it's still a _very_ useful site.
------
ruebenramirez
missing vultr - [https://www.vultr.com/](https://www.vultr.com/)
~~~
jlgaddis
Click "Add Provider" and paste the URL?
------
ohashi
If you care about quality of a company and not just the raw specs, you might
find
[http://reviewsignal.com/webhosting/compare](http://reviewsignal.com/webhosting/compare)
useful. It uses people's twitter comments to determine which hosting companies
people have favorable opinions of. (Disclaimer: I created it)
------
tbrownaw
Where's the "can pay anonymously in bitcoin" option? I thought that was a
thing these days. ;)
~~~
jlgaddis
Honest question: is there legitimate demand for this for legitimate reasons?
I was big into Bitcoin about four years ago and work for an ISP nowadays. We
provide services as well and I've considered mail/web hosting/VPS/dedicated
offerings (on a small scale) with Bitcoin as a payment option but I don't want
to end up attracting the "wrong type" of people.
I realize that there are people who simply want to be anonymous and I'm
totally fine with that (I do run Tor relays, for example) but my fear is that
the majority of customers this would attract would be those that are "up to no
good".
Thinking out loud, perhaps a mail hosting service payable with Bitcoin would
be a good way to test the waters -- that is, we could take care of domain
registration, DNS configuration/hosting, etc. and allow access over Tor for
those looking for "anonymous e-mail" (although I'd be implementing pretty low
limits on volume, at least initially).
~~~
heyalexej
There are plenty of legitimate reasons to pay with BTC. I love how friction-
less and easy it is, especially if you get partially paid in BTC as well for
your services. I love [https://bithost.io](https://bithost.io) and I guess you
could ask Scott if he had any problems so far.
He gives you a limit of 2 instances (droplets) on signup. You can then open a
ticket and explain what you intend to do and he gives you the desired number
of servers. I give him access to the apps I'm working on to remove any doubt
and be transparent.
I always think that malicious people find entirely different ways to get what
they want without even thinking of payment. Hacking a box for example.
~~~
Scottymeuk
Thank you :)
------
nonuby
Be careful X core means nothing reliable, for 99.9% of VPS providers, they are
not dedicated nor rated and could be divisible by up to 2000 guests
(particularly with OpenVZ provider), at least on Rackspace, AWS, Azure the CPU
performance is generally within a specific range (variability due to minor
hardware config differences, and noisy neighbours, but appropriately
restrained). In addition 99.5% of these providers don't have the sufficient
knowledge to run a VPS operation, they purchase a few dedicated servers and
copy of SolusVM and WHMCS and hope and pray for the best.
~~~
jlgaddis
I work for an ISP and can put as many machines in our datacenters as I want
(within reason, of course) so I only have a few (small) VPSes nowadays. When I
used to have a bunch of them, however, I quickly learned to avoid anything
OpenVZ-based like the plague.
This is anecdotal, of course, but OpenVZ "feels" very much inferior and the
providers running OpenVZ (more often than not) very much seemed like fly-by-
night operations simply trying to squeeze as many VMs as possible onto a
physical host without any regard to performance.
~~~
IgorPartola
I've had the same experience. Xen and KVM seem to be best for predictable
performance.
------
jedberg
Shouldn't AWS still count as a VPS? A reserved micro instance is cheaper than
most any of these options and serves the same purpose.
~~~
UnoriginalGuy
Not with the bandwidth requirement it isn't.
~~~
jedberg
How so? The definition of VPS[0] doesn't include a bandwidth part, and to be
fair, Amazon has a free tier as well (albeit small).
[0]
[http://en.wikipedia.org/wiki/Virtual_private_server](http://en.wikipedia.org/wiki/Virtual_private_server)
~~~
UnoriginalGuy
I was responding to your "same price" point. If you include the bandwidth
they're asking for then EC2 rises in cost sharply.
PS - Huge fan of yours by the way. You should do another AMA on /r/SysAdmin.
~~~
jedberg
Ah, that makes sense and is fair.
> Huge fan of yours by the way. You should do another AMA on /r/SysAdmin.
Heh, thanks. I appreciate that! Maybe soon I will do an AMA.
------
listic
Is there a way to change display currency?
------
phantom_oracle
Very useful.
Try cross-posting on a thread on lowendbox.com.
~~~
matheweis
Also webhostingtalk.com
In fact, if OP could scrape the VPS deals forum from there, that would be
super cool ( do something that doesn't scale. ;) )
------
noir_lord
I can't imagine not using Linode as my default option.
They are without doubt my favourite IT company, in 7 years with between 3-4
and a lot more instances I've had to talk to them exactly 3 times (once for a
query, once to ask for a bandwidth cap change and once related to billing).
They set the standard for me at this point.
~~~
evook
But independently from your selected location linode is routing through the
US. That's a bummer for way too many possible customers with sensitive data.
------
puzzlingcaptcha
OVH classic 1 has 10GB hdd not 25GB. Would be nice to be able to see the
virtualization method in the table (vmware/openvz etc).
It would be also nice to be able to show all products from a region, e.g.
western Europe, northern Europe and so on (I don't care if it's in FR,DE or
NL)
------
dan1234
Seems to be missing all of the Digital Ocean UK prices. Also would like to see
what OS flavours are offered, what networking options (private net, IPv6
range, IPv4 costs etc), hide plans that use non-SSD, which providers offer 2FA
logins, backup costs.
------
plutonium
nice site! It'd be cool to see a filter for virtualisation type as well.
maybe not terribly useful, but I wasn't able to open the site at first.
[http://api.vpscomp.com:3000/geo/checkme](http://api.vpscomp.com:3000/geo/checkme)
was 500'ing with something like 'undefined cca3'? I disconnected my VPN and it
worked. Reconnected and it still worked, so I lost the exact error (oops).
defaulting to USD when the country can't be detected (or the native currency
for the VPS) would be nice.
------
ternaryoperator
Surprised that intovps.com is not on the list. One of the earliest VPS
providers, and still one of the least expensive. 2TB traffic, 30GB HDD, 1GB
RAM, $10/mo.
~~~
thejosh
Same price as DigitalOcean, are they SSDs?
~~~
s_kilk
I just looked them up [1] and they don't mention ssds, however they appear to
give four cores by default, which may be more important for some workloads.
[1] [http://www.intovps.com/plans.html](http://www.intovps.com/plans.html)
------
mbrownnyc
Problem: Can't choose currency. Why? I'm in Antigua and all pricing is
rendered in XCD, but I'm a USD user.
------
simonebrunozzi
Question for everybody: why would you choose a VPS over a "cloud" server (e.g.
AWS, Azure, GCE)? Why vice versa?
~~~
noblethrasher
Short answer: VPS are (usually) cheaper, and you have _total_ control.
Longer answer: There are basically two approaches to scaling software: Either
you build/simulate better computers (vertical scaling), or you deploy more of
them (horizontal scaling).
Dedicated hardware lets you build or simulate having a better computer (e.g.
FPGAs, or using a network driver that is ideal for your traffic patterns, or a
heavily tuned JVM). On the other hand, the cloud lets you quickly add (or
remove) computers in response to service demand.
VPSs just split the difference (though they are usually closer to the vertical
side of the equation).
------
sanemat
I want vagrant-"provider". I use digital ocean, because there is vagrant-
digitalocean gem.
------
jerguismi
Seems to miss quite many providers, such as (most importantly) hetzner online.
------
tsaoutourpants
Add flag for Tor friendly :)
------
cglee
Is there a similar thing for dedicated hosting providers?
------
Toast_
you might want to add vultr btw. i know they seem to have a bad rep as a clone
of DO, but i was really happy with their performance.
------
Mandatum
Add filter for ALL countries
~~~
onestone
Also for continents. E.g. I'm interested in a server in Europe, don't care if
it's in France, Germany, Netherlands, or wherever.
~~~
rockair
Thanks for your comment, i plan to add this feature.
------
grubles
No vultr, huh. :/
------
wantab
This doesn't give any idea about the quality of any of these hosts. Many of
these are already well known so it's not much help.
------
curiously
ovh classic 1
1gb, 10tb, 25gb....what the hell? this is like way better than digitalocean
and I thought DO was the cheapest.
~~~
icebraining
It's OpenVZ, not full virtualization. That means you have no control over the
kernel (e.g. can' t upgrade it, can't fully reboot), and it's said - but I
can't vouch for it - that it's more susceptible to "bad neighbors".
They have full virtualization (the VPS Cloud plans), but it's much more
expensive.
Here's a thread on Lowendtalk about VPS Classic plans:
[http://www.lowendtalk.com/discussion/37835/ovh-
classic-1-vps...](http://www.lowendtalk.com/discussion/37835/ovh-
classic-1-vps-any-good)
~~~
curiously
word...it was too good to be true.
| {
"pile_set_name": "HackerNews"
} |
Steve Jobs Never Wanted Us to Use Our iPhones Like This - evo_9
https://www.nytimes.com/2019/01/25/opinion/sunday/steve-jobs-never-wanted-us-to-use-our-iphones-like-this.html
======
aylmao
> The [2007 iPhone launch] presentation confirms that Mr. Jobs envisioned a
> simpler and more constrained iPhone experience than the one we actually have
> over a decade later. For example, he doesn’t focus much on apps.
Well, this is because there were no apps. It's was a brand new platform!
> Mr. Jobs seemed to understand the iPhone as something that would help us
> with a small number of activities — listening to music, placing calls,
> generating directions. He didn’t seek to radically change the rhythm of
> users’ daily lives.
Jobs didn't die after presenting the iPhone in 2007 though. He passed away in
2011, well into the "there's an app for that" ad campaign that boasted how the
iPhone _could_ in fact radically change the rhythm of users' daily lives.
~~~
sp332
There were no apps because they assumed everyone would use websites. Which is
still mostly what I use my phone for (although I have an Android).
~~~
jharger
I do not believe this to be true at all. The App Store opened in July 2008,
just over a year after the initial iPhone was released. That means that likely
had to at least be on the Apple product roadmap well before the iPhone was
even released.
~~~
chc
He explicitly said in the iPhone launch that the intended way to create apps
for the iPhone was to make a website:
> The full Safari engine is inside of iPhone. And so, you can write amazing
> Web 2.0 and Ajax apps that look exactly and behave exactly like apps on the
> iPhone. And these apps can integrate perfectly with iPhone services. They
> can make a call, they can send an email, they can look up a location on
> Google Maps.
> And guess what? There’s no SDK that you need! You’ve got everything you need
> if you know how to write apps using the most modern web standards to write
> amazing apps for the iPhone today. So developers, we think we’ve got a very
> sweet story for you. You can begin building your iPhone apps today.
I remember a lot of jokes in the Mac developer community at the time about
what a "sweet story" this was. It seemed like the public SDK was a response to
jailbreak apps being more popular than the intended "iPhone Web apps."
~~~
jharger
I'm not debating that he said that, I'm just suggesting that it was a
marketing ploy, either to buy the teams some time to iron out the details with
the app store, or some clever product strategy to release the app store later
(which was hugely popular when it did come out)
...but then I don't know, I wasn't there.
------
bouncing
I'm not sure there's a strong connection with Jobs' desire to limit native
code execution and social good will. It's probably worth pointing out that
reportedly, Jobs himself kept iOS devices away from his own children because
he considered them "too addictive."
Apple's original position on third party apps was that they deserved on the
web, in what would eventually become known as "progressive web app" form. That
position was abandoned not just because it was a mediocre user experience, but
also, it actually prevented device lock-in, which is something Jobs obviously
craved.
You can argue that some apps are time-sucks, or bad for your overall well-
being, and I'll be right there with you. But that has relatively little to do
with whether they're shitty web apps or native code apps.
And also, the fact that smartphones do way more than originally imagined is a
great thing. In most parts of the world, I can pull out my phone, tap a few
characters, and a car will magically pull up where I am and take me wherever I
need to go. Or bring me food. I can translate anything to anything. I know the
second a flight is delayed, which lets me be more present in life. My life is
assuredly better because my smartphone is turing-complete and runs third party
software.
~~~
endorphone
"Apple's original position on third party apps..."
To add some necessary context, Apple's position on almost everything is "what
we are currently doing is best" (and from that "what our competitors are doing
is wrong" or "what you wish it did is wrong"). Building a whole native
development platform, curation system, etc, is a massive undertaking, so with
the first device Jobs unsurprisingly pitched their current state as ideal. And
as they adopted new choices, those became the new ideal. Any who read too much
into Jobs various sentiments that could best be expressed as sales pitches
might be going astray.
~~~
bouncing
That's a good point.
"We haven't figured out third party app curation yet" might have been
accurate, but not in Apple's style to admit.
~~~
CharlesW
Exactly. Or even more likely, "we have a pretty good idea of what we want the
native apps experience to be, but it's not ready/good enough yet".
------
bradenb
I think the author is wrong on nearly all counts. I think Steve Jobs loved to
see what people were interested in and find a way to make it easier to have
and use. The iPod was a way of taking something people loved to do (listen to
music) and make it easier with "1000 songs in your pocket."
At the risk of romanticizing: from what I've read, he wasn't about creating
brand-new concepts, he was all about taking existing concepts and turning them
into what people really wanted them to be.
Lastly, I think the author gives Apple and Steve Jobs far too much credit.
Apps didn't become successful on these platforms because of app vendors, they
became successful because people started asking "what else can I do with this
phone?" People _want_ to constantly feel "in the loop" and "productive."
~~~
hopler
Right. this article is someone who has no credibility for their own argument
trying to borrow credibility from a dead person by outlandishly claiming that
the famous dead person agrees with them.
------
richardwhiuk
I'm not sure Steve Jobs's opinion here is relevant.
I'm also not convinced that just because Steve Jobs pitched something one way
in a presentation so that the audience would understand what the device meant,
meant that he didn't see a large vision of an always-on, internet-enabled
device.
~~~
gibolt
"Internet communicator"
------
goodroot
I get lambasted for this opinion all the time, but I am still holding it...
The Blackberry was the peak of efficient, minimal phone usage:
* It optimized for doing things like short letter and message writing well through the keyboard.
* Blackberry messenger still leads in terms of features that can reduce noise: appear offline and availability settings, friends lists.
* It focused on productivity applications, screen size kept browsing to "as needed".
As a Canadian, I remember when the iPhone started to take over. My friends
were sitting around playing Paper Toss, meanwhile my berry sat quietly in my
pocket.
~~~
Yetanfou
Yet that same Blackberry was also nicknamed 'Crackberry' due to the seemingly
addictive nature of the device which had some users glued to its screen just
as much as current devices do. The conclusion to draw from this is probably
that some people will get addicted to anything and everything which gives them
the semblance of 'connectivity'.
------
ddebernardy
> In the remarks, after discussing the phone’s interface and hardware, he
> spends an extended amount of time demonstrating how the integrated iPod
> leverages the touch screen before detailing the many ways Apple engineers
> improved the age-old process of making phone calls. “It’s the best iPod
> we’ve ever made,” Mr. Jobs exclaims at one point. “The killer app is making
> calls,” he later adds. Both lines spark thunderous applause. He doesn’t
> dedicate any significant time to discussing the phone’s internet
> connectivity features until more than 30 minutes into the address.
> The presentation confirms that Mr. Jobs envisioned a simpler and more
> constrained iPhone experience than the one we actually have over a decade
> later.
Having actually seen the video years ago, this article strikes me as a big
mischaracterization of what Jobs said -- let alone envisioned, which only Jobs
would know.
I don't remember the exact quote, but in the first couple minutes of the
video, Jobs introduces the talk saying iPhone is going to revolutionize three
industries by combining an iPod, a phone, and internet communication device.
Jobs was fully aware it was going to be huge for those three reasons combined.
Had he not envisioned it was about having the internet in your pocket, he'd
have stopped at it being an iPod that can place phone calls.
------
dare0505
I think "Wanted" should be changed to "Imagined" to better reflect the
content.
With that being said, it's a refreshing article. Most articles on Steve Jobs
focus on how visionary he was, how he was predicting everything etc. This one
is stating that, he was a human after all, just like us, and that the future
is notoriously hard to imagine and predict. Nassim Taleb would agree :)
------
bitwize
He didn't want us to use Macs the way we do either. The Mac's spiritual
predecessor, the Lisa, originally came with an office suite and that was it.
No third-party application software could be installed. Eventually,
alternative OSes (including Unix) and an emulation layer allowing Apple to
badge-engineer unsold Lisas as the "Macintosh XL" would change that, but the
original concept was fixed functionality that would prevent users from being
overwhelmed by too many choices.
Steve had a fondness for completely circumscribed ecosystems and "computers as
appliances" which I don't think he ever totally let go of, despite innovation
and market demands showing obvious benefits to users being able to expand the
capabilities of their own devices.
~~~
CharlesW
> _He didn 't want us to use Macs the way we do either. The Mac's spiritual
> predecessor, the Lisa…_
Steve was forced out of the Lisa group more than 2 years before the Lisa
shipped, so it's a stretch to infer a "no third-party applications" intent on
Steve's part based on that.
Also, Lisa Workshop allowed for third-party application development and
shipped alongside Lisa Office System (IIRC). Are you saying that it was
possible to develop applications for the Lisa but not run them? (I honestly
don't know, but that seems unlikely.)
> _Steve had a fondness for completely circumscribed ecosystems and "computers
> as appliances"…_
You may be thinking of Jef Raskin, who originally envisioned Macintosh as a
"computer appliance". Steve's vision for Macintosh was much different than
Jef's, and Apple actively courted third-party developers during its
development.
------
lukifer
It’s interesting to ponder how much of the smartphone ecosystem was an
accidental byproduct of implementation details: namely, the decision to use a
stripped-down desktop OS, rather than a beefed-up iPod OS. Allegedly, the
latter was also in the works as a phone, but it was Scott Forstall’s OS X team
who won the battle internally. Even though the feature set was shipped as
“iPod that makes calls”, the fact that everyone knew there was a full OS under
the hood made the proliferation of apps inevitable.
I suspect we would have gotten to the present-day norm eventually either way;
but, if not for “OS X in your pocket”, the iPhone might have wound up in the
same historic dustbin as the Newton, the Palm, and the Sidekick, a mere
precursor rather than the thin end of a revolutionary wedge.
------
gnicholas
> _He doesn’t dedicate any significant time to discussing the phone’s internet
> connectivity features until more than 30 minutes into the address._
That's because, IIRC, he was doing a dramatic reveal where each set of
features was discussed separately (iPod, cell phone, internet navigator). The
fact that this section came last doesn't mean Jobs thought it was less
important. In fact, it was arguably the most impressive part (iPods already
existed, as did cell phones, but there were no good touch-screen internet-
enabled devices). That's probably why it was last.
------
danso
This essay absurdly treats humans and their beliefs as immutable objects.
There is no justifiable reason to think this, even as much as Jobs may have
likened himself to a deity.
------
mckee1
Perhaps Jobs didn't appreciate the full extent to which their product would
transform humanity, but that is not necessarily the same thing as him not
wanting, or opposing, us using our iPhones as much as we do.
I understand the desire for a backlash on smartphones, but their ubiquity is
simply a demonstration of just how much utility we derive from them.
~~~
imgabe
I don't think ubiquity necessarily implies utility. Was the ubiquity of
cigarettes a demonstration of how much utility we derived from them?
------
adam
While the title of this article may be a bit misleading as numerous people
here have reliably pointed out, I think comments so far are missing the
broader point. Cal Newport's focus for awhile now has been on "minimalist" use
of our phones, and how social media, etc. are interrupting/damaging our lives
in numerous ways.
Despite the "cheap" headline and arguments you could make of his narrow
interpretation of Jobs' introduction of the iPhone, Newport's broader points
IMHO should still be recognized and are important to be heard.
------
waynecochran
Evidently he didn’t let iPads into the home as far as the kids involved:
[https://www.businessinsider.com/heres-why-steve-jobs-
never-l...](https://www.businessinsider.com/heres-why-steve-jobs-never-let-
his-kids-use-ipad-apple-social-media-2017-3)
For some, these gadgets are crack cocaine.
------
scarface74
Seeing that by the time the iPhone was introduced, there were already millions
of people tuning out the world with iPods, I doubt that SJ didn’t see this
coming. By the time he passed, the App Store and social media on mobile were
already a big thing.
------
weaksauce
The reason Jobs didn’t want to demo the Internet part of the phone was because
it was terribly buggy at the time of the demo and they rehearsed a way to
carefully navigate a few pages in a specific order that wouldn’t crash the
browser.
------
lgrapenthin
Jobs didn't focus on, at the time, non-existent features, like the mobile web,
because they didn't exist. The authors interpretation is not well supported
~~~
ceejayoz
WAP was introduced in 1999, and m.example.com (or .mobi ones; introduced in
2005) style sites existed before the iPhone as well for use on Blackberries
and the like.
Things exploded quite a bit post-iPhone, but it's a mistake to say they didn't
exist at all.
------
dan_m2k
I call bs. It was a very clever entry to the market with lots of opportunity
for product improvement. 3G chip? Reason to upgrade. App Store? Another.
------
CyberDildonics
He thought he could heal his cancer with crystals, let's not hold him up as
some perfect deity.
------
AAnAndAndrAndre
"He didn’t seek to radically change the rhythm of users’ daily lives."
He didn´t do it. We did.
------
anth_anm
The author knows he didn't die until years after the first iPhone launch?
------
k__
He underestimated smartphones, so what?
We all did..
------
baxtr
Please stop telling us what Steve wanted or not wanted? He is dead for
Christ’s sake. Let him rest
~~~
melkiaur
For your information, Jesus Christ never wanted us to argue about mobile
phones on the internet.
~~~
baxtr
Depends on the universe I guess.
------
dyeje
So easy to put words in the mouth of someone dead.
------
fipple
LOL at the NYT taking Steve Jobs' marketing tactics as his actual normative
views. News flash: Steve Jobs was the best in the history of capitalism at
"it's not a bug, it's a feature." The iPhone was perfect without 3rd party
apps because it didn't have 3rd party apps! Once there were 3rd party apps, it
was perfect with 3rd party apps. It was perfect with a 3 inch screen because
it had a 3 inch screen. When he increased it then it was perfect then. When it
had a bad radio it wasn't the phone that was imperfect, it was you and your
stupid fucking hand!
Notice how many times Apple has used the motto "the best iStuff since iStuff."
It worked better several years ago, but they always claim their current thing
is the Platonic ideal of its category.
| {
"pile_set_name": "HackerNews"
} |
An evolving view of depression - tokenadult
http://www.boston.com/news/health/articles/2009/01/19/an_evolving_view_of_depression/
======
tokenadult
The recent research journal article mentioned in the submitted news story:
[http://www.ajp.psychiatryonline.org/cgi/content/abstract/165...](http://www.ajp.psychiatryonline.org/cgi/content/abstract/165/8/969)
| {
"pile_set_name": "HackerNews"
} |
Ask HN: Tools for taking notes on videos? - rpandey1234
What software exists for taking notes on videos? (e.g. lectures, political speeches, video games, or even music videos.) Having a clean and easy way to annotate video content according to timestamp would have lots of educational value. I've found these two sites which seem to do the job, but they seem clunky or non-intuitive:<p>http://www.videonot.es/
https://ant2.cehd.umn.edu/<p>Can anyone suggest other options?
======
jcr
If I was faced with your problem, I'd solve it in an odd way which _might_ not
be what you want.
I'd use subtitles.
With a bit of ffmpeg magic, I'd get the video file into MKV (Matroska) format
simply because I like them best and I find them easiest to edit. The important
piece is MKV supports embedding subtitle text into the video container format
as a separate "stream" (read:file). It's easy to add or remove subtitles.
The next problem is timing your text to specific parts of the video, but this
problem has mostly been solved by the fansub crowd. There are a few different
open and closed source subtitling programs out there. I have no experience
with them, so I can't make any suggestions. If I needed a solid suggestion,
I'd ask any of the fansub groups. They'd know what works well.
In most regards, what you want is the subtitling software itself since it
allows you to both view the video and _edit_ your text. If your text is
simple, it should do the trick.
EDIT: If you have the urge to do some hacking, you could also modify a player
like VLC or mplayer to show text in a separate window from the video. This
could help if you need to _present_ your additions to others.
~~~
ScottWhigham
Are you answering the same question OP asks though? By definition, "notes" are
your personal summary/questions/ideas about what's being presented. Your notes
might refer to the words in the presentation, or the video, or pictures, or
the music, or just random ideas that come to you. Subtitles are not that -
subtitles are the original text in its entirety. So I guess I don't see how
subtitles == notes.
~~~
jcr
Subtitles are just text data with a time code corresponding to a point in the
video, so the _feature_ of "subtitles" can be used to store whatever text you
want, including notes, even though keeping notes was not the intent of the
feature. There is nothing requiring the text data to be either an exact
transcription or translation of the audio data. In fact, some fansub groups
have released "joke" or "troll" translations for fun on various anime videos.
Once you generate your subtitle text file, you can easily merge it into the
video file. There are a few different subtitle text formats but the only one
I've really worked with is SSA/ASS.
The MKV video container format allows you to store multiple "streams" (files)
of ASCII or UTF-8 text synced by time codes to the video. The reason for
multiple subtitle streams is so one video (container) file can have subtitles
in multiple languages. This means if there's some hard limit (I'm not sure if
there is) on the amount of text you can have at a single time code, you can
get around the problem by adding another stream/file.
------
JohnnyAmos
I prefer the old standard of pen and paper for two good reasons:
1\. I hate typing.
2\. Handwriting aids retention more than typing.[1]
[1]
[http://www.sciencedaily.com/releases/2011/01/110119095458.ht...](http://www.sciencedaily.com/releases/2011/01/110119095458.htm)
| {
"pile_set_name": "HackerNews"
} |
Will IBM's Watson kill your careeer? - mindcrime
http://slashdot.org/story/12/06/08/1551233/will-ibms-watson-kill-your-career
======
cldrope
Thanks for the slashdot convo. Now we don't have to have an conversation here!
But no it won't kill my career because I program Java and if he wants to learn
new things or in different ways he'll need us.
~~~
mindcrime
_Thanks for the slashdot convo. Now we don't have to have an conversation
here!_
Meh... different, albeit overlapping, crowds. That said, what I long for is
the day when all these various communities, discussion boards, etc. are
semantically interlinked[1], so a conversation can span sites easily.
[1]: <http://sioc-project.org/>
_But no it won't kill my career because I program Java and if he wants to
learn new things or in different ways he'll need us._
That's what he wants you to think! :-)
~~~
cldrope
He's been secretly reprogramming and binding parts of himself in a new form of
encrypted-typed FORTRAN 77? OH GOD.
Skynet is here everyone.
| {
"pile_set_name": "HackerNews"
} |
Natively Format JavaScript Numbers - kiyanwang
https://elijahmanor.com/format-js-numbers
======
elijahmanor
NOTE: This post is a sibling post to... Natively Format JavaScript Dates and
Times [https://elijahmanor.com/format-js-dates-and-
times](https://elijahmanor.com/format-js-dates-and-times)
| {
"pile_set_name": "HackerNews"
} |
CSS Front-end Frameworks with comparison - afshinmeh
http://usablica.github.com/front-end-frameworks/compare.html?v=2.0
======
jbarrow
Really great comparison chart. One thing that I, personally, would like to see
is the relative sizes of each of the libraries (or at least their core,
minified includes). While it certainly wouldn't control my decision of which
framework to use, it would certainly be interesting to see which frameworks
achieve what functionality with x amount of code.
~~~
lowboy
Also helpful would be a brief list of functionality so you can make a
comparison more fairly. Bootstrap's minified 122kB css weight (with
responsive) is huge compared to that of Skeleton's 12kB, but the former has
more features. Or Toast, with it's 3.7kB min size but even fewer features than
Skeleton.
Skeleton: <http://www.getskeleton.com/>
Toast: <http://daneden.me/toast/>
Bootstrap: <http://twitter.github.com/bootstrap/>
~~~
johnx123-up
FWIW, I think, Helium is the winner here under 30kb with Bootstrap look
<https://news.ycombinator.com/item?id=5108821>
------
zalew
Foundation 4 is ie9+ while there is a snippet to enable the grid for ie8 and
the rest should mostly work just fine
<http://foundation.zurb.com/docs/support.html> Foundation 3, which is still
supported, is ie8+ <http://foundation.zurb.com/old-docs/f3/support.php>
Bootstrap will also soon drop ie7 support in the 3.x branch.
~~~
afshinmeh
Thanks for your information and excuse me for this problem. We just manage
this project on Github, <https://github.com/usablica/front-end-frameworks>
Could you please report a bug for us?
~~~
zalew
np, submitted there
------
d23
I hate to be that guy, but the chart would be a lot more useful if the colors
were used to communicate something rather than just being pretty. Ideally
items that were better (e.g. were compatible with older versions of a browser)
would have more visual weight than those that were worse. The less/sass and
tablet/desktop sections do it better, but the browser section is pretty
useless.
~~~
afshinmeh
Thanks for your suggestion, but can I know why you think the browsers
compatibility column is useless? Should I change it to something better?
~~~
Hytosys
I think he means that the browser compatibility column should take advantage
of color as well. Maybe more attractive/brighter colors could be
representative of frameworks that are compatible with older browsers.
~~~
d23
Exactly. Browser compatibility is an important factor and is definitely
useful; it would just be nice if a quick glance could tell me whether a
particular framework was "more" or "less" compatible.
------
benburton
I really like Bourbon Neat: <http://neat.bourbon.io/>
~~~
afshinmeh
Hhhm, nice framework. We'll add it for next version, thanks.
~~~
brianfryer
Please do! Bar none, it's my favorite CSS framework out there!
------
KaoruAoiShiho
Missing root-css which is based on Stylus, and is imo the best framework.
~~~
afshinmeh
Could you please submit an issue on our Github for that?
------
lignuist
Great. It would be nice, to compare the size in KB also.
~~~
afshinmeh
Sure, yeah.
------
maebert
More detailed comparison of LESS frameworks: <https://coderwall.com/p/spkngq>
~~~
afshinmeh
Cool!
------
kurrent
Great list. What criteria are you using to sort this list?
I think it would be helpful to show the date of last development activity for
each framework, be it a most recent github commit or release date of latest
version. Some of the frameworks haven't been updated in over 3 years and it
would be nice to distinguish these quickly.
~~~
afshinmeh
Currently there's no mechanism for their sorting, but we'll add it for next
versions, good idea.
------
daeken
I used 960gs for the first time last night, to build the template for
<http://daeken.com/> (had to finally switch from Posterous). It was amazingly
simple, even for someone completely CSS brain-dead. Really can't say enough
good things about it.
------
leeoniya
neat. not digging the contrast in the browser section though. also, is there
really a need to show the huge barely visible browser icon next to each
figure? just use browser icons (in their native colors) as column headers.
~~~
afshinmeh
Thanks. Yeah good idea, I think we can change the table to prevent redundant
data.
------
gotofritz
Am I the only one looking at the 34 items in the list (34!!) and thinking "do
we really need all of these?" Isn't the sheer volume of new stuff constantly
coming out gone a bit out of hand?
------
jimymodi
What is the meaning of "SASS" and "LESS" column ?
~~~
afshinmeh
Shows the stylesheet language that used in the framework. lesscss.org or sass-
lang.com
------
FuzzyDunlop
This feels a bit sneaky: <http://cl.ly/image/3c0A471T1K1X>
~~~
afshinmeh
Ow, sorry :) I think we should change the text of the box.
------
bung
Sorry, but didn't someone release one of these all of two weeks ago? Sad
times...
------
netfeed
Oh, Block's grid system looks sweet, I've got to take a better look at that.
| {
"pile_set_name": "HackerNews"
} |
Show HN: Stackie – A tiny stack machine for texture generation - Lerc
http://fingswotidun.com/stackie/
======
dvh
This code run from console will generate and execute random codes, whenever it
finds something new it stops (just reexecute it and it will continue
searching)
var seen = seen || [];
while (true) {
c='';
m=30*Math.random();
var a='x0123456789dcp+*~!yPsqa-/^';
for (var i=0; i<m; i++) {
c+=a.charAt(Math.floor(Math.random()*a.length));
}
code.value = c;
buttonClick();
d=f.getImageData();
sum=0;
for (var i=0; i<5000; i++) {
sum+=d.data[i];
}
console.log('seen ', sum);
if (seen.indexOf(sum) < 0) {
seen.push(sum);
break;
}
}
Few examples generated by this:
s*23-yxxx+-7x7s/y-^3sp*
9sx2+ysx-7ysp+*+
-P+p*syq6^xp15x/syxyyc-p**
~~~
viraptor
I quite like this generated one: cq1cxxq~!4+p~/~37d^8y/3-c
~~~
simcop2387
a similar, less complicated one 55 * y! * y! * y! * P *s
------
Matheus28
I made something that compiles it to Javascript:
[https://gist.github.com/Matheus28/ce76f1f7f5e2b046b1fd](https://gist.github.com/Matheus28/ce76f1f7f5e2b046b1fd)
The original idea was compiling it to GLSL, but I got lazy. But it should be
pretty easy to make it generate GLSL.
It doesn't do constant folding or any smart optimizations, but it should be
pretty easy to code that in.
Example:
This:
x12/-y12/-a6+8*x12/-d*y12/-d*+qq82**p112/x-d*-112/y-d*-*d*d*d**dd*+dd*+dd*+
Generates:
var tmp0 = (x - (1 / 2))
var tmp1 = (y - (1 / 2))
var tmp2 = ((1 / 2) - x)
var tmp3 = ((1 / 2) - y)
var tmp4 = ((1 - (tmp2 * tmp2)) * (1 - (tmp3 * tmp3)))
var tmp5 = (tmp4 * tmp4)
var tmp6 = (tmp5 * tmp5)
var tmp7 = (perlin(((Math.atan2((x - (1 / 2)), (y - (1 / 2))) + 6) * 8), (Math.sqrt(Math.sqrt(((tmp0 * tmp0) + (tmp1 * tmp1)))) * (8 * 2))) * (tmp6 * tmp6))
var tmp9 = (tmp7 + (tmp7 * tmp7))
var tmp11 = (tmp9 + (tmp9 * tmp9))
return (tmp11 + (tmp11 * tmp11))
function perlin(b,c){function g(b,c,a){a=a*a*a*(a*(6*a-15)+10);return(1-a)*b+a*c}function d(d,e){var a=2*(256*e+d);return(b-d)*gradient[a]+(c-e)*gradient[a+1]}b%=256;c%=256;var e=b&255,f=c&255,h=e+1&255,k=f+1&255,l=b-e,m=c-f;return g(g(d(e,f),d(h,f),l),g(d(e,k),d(h,k),l),m)};
~~~
Lerc
If you make a GLSL version you absolutely must add
"t" : push(time);
------
vanderZwan
This reminds me of Forth Haikus:
[http://forthsalon.appspot.com/](http://forthsalon.appspot.com/)
It can get pretty crazy:
[http://forthsalon.appspot.com/haiku-
view/ahBzfmZvcnRoc2Fsb24...](http://forthsalon.appspot.com/haiku-
view/ahBzfmZvcnRoc2Fsb24taHJkcg0LEgVIYWlrdRjG_xQM)
------
Kenji
For those who don't immediately understand (I hope I got that right):
\- the 'Try It' button disappears behind a text box if the browser window is
too narrow, making you unable to use the tool. (edited after hobs' reply)
\- 0 is black, 1 is white (and so is larger than 1).
\- if a,b is on top of the stack, then - pops b and a and puts (a-b) on the
stack
\- the value on top of the stack (after the entire string was processed by the
stack machine) will determine the final colour of the pixel
\- the algorithm runs for every pixel, that's why it's kinda slow
~~~
hobs
I am one of those people, because I see the examples and the text box but
nothing appears to occur when I use it or try any of the examples.
Tried Chrome and FF (and disabling extensions), so I thought I was just doing
it wrong.
However, I did a little more digging because of the discussions, and I think
the button that I am supposed to click is hidden
[http://i.imgur.com/kI8TrfE.png](http://i.imgur.com/kI8TrfE.png)
I dont know how this is happening across both browsers though, but I thought I
would leave this here if anyone else is confused as I was.
Update: After trying a few things, stretching the screen width made the button
pop up.
~~~
Lerc
The page was constructed by progressively adding bits as I coded. The page
layout is somewhat crazy because of that.
~~~
hobs
Haha, no worries, I just wanted to try out this cool tool, and had never used
something like it before, so I thought it was me!
------
boomlinde
The use of single digit constants is a bit strange. Why kot take the approach
of dc and let constant tokens be any string of digits, separated either by a
different token or whitespace? Or the rather simpler approach of forth where
all tokens are separated by whitespace.
I also have to echo shat someone else mentioned: give Forth Haiku a try!
------
jmmcd
Lovely! It reminds me of some methods of generating images with genetic
programming, e.g. Karl Sims, [http://dahart.com](http://dahart.com), and
[http://picbreeder.org](http://picbreeder.org). The main difference being a
stack-based representation versus a tree-based one. Some people do use stack-
based genetic programming, so it would be fun to hook this up to one of those
systems and evolve textures.
One nice feature in the above strand of research is that the output value,
instead of being mapped to a greyscale, is mapped via a colour map to produce
colour images.
~~~
Lerc
if you provide a mapping function Stackie will generate colours too. It just
uses a grey mapper if none is provided.
You can provide your own function that takes a number and returns an ARGB
Int32, so for pretty flame you would just do.
f.generate(Stackie.program("x1x-*5*dx4**y3*p+y!-"));
var flame = f.getImageData(blackbody);
------
ggambetta
FYI I'm getting "Uncaught TypeError: Failed to construct 'ImageData': Illegal
constructor" on Chrome 41.
~~~
Lerc
Yeah, it used to be the case that you had to create ImageData from a
previously existing Canvas
The ImageData Constructor got support in Chrome 43 and FireFox 29.
------
willvarfar
Is it me or are there tools for Ludum Dare popping up everywhere? :D
[http://www.ludumdare.com/compo/](http://www.ludumdare.com/compo/)
------
Aardwolf
Awesome! Would be awesomer if it supported color. E.g. a similar stack based
way to generate a smooth 256 color palette.
~~~
Lerc
Since Stacky.program() just makes a function(x,y) I added a palette generator.
red is at y==0 green y=0.5 blue at y=1.0
so the palette program "x" generates a greyscale. "xy*" makes it orangy.
------
1arity
That is so cool.
L-systems could work as a stack system too perhaps ?
| {
"pile_set_name": "HackerNews"
} |
Google – Compare Credit Cards - pdevr
https://www.google.com/compare/creditcard/qs#p=0
======
itisbiz
Great, now I know why prepaid credit card directory website's Google search
traffic has dropped off recently .. hmm.
| {
"pile_set_name": "HackerNews"
} |
Everything is fine with JavaScript - colinprince
http://www.macwright.org/2016/10/04/everything-is-fine-with-javascript.html
======
wrong_variable
JS is ruthless.
It has no issue discarding an ENTIRE generation of programmer and 1000s of
man-hour to move itself forward. It does not sleep, like a eternal blackhole
it eats young men and spits out their heat at the other end.
JS is chaotic.
Just like nature, it is not uncomfortable in telling you the complexity that
is reality. Fighting it only results in broken dreams and tears. The best hope
is to find your small place and hope that the chaos doesn't someday destroy
you.
JS is War.
Created in the crucible of the young internet, it had to fight for its
survival as soon as the umbilical cord was cut. It existed in slumber while
the nations of python, ruby, PHP were destroying each other apart to get a
piece of land - in what is humanity's most empowering invention ever since the
printing press. JS was not part of the racket, it was too weak to participate
- only a nation of lesser mind. The lesser minds however represented large
segment of the hungered masses - students, artists. Like the white walkers
they came and waged a great war, the size of which so vast that the soldier's
fighting it are unaware like a - fish is unaware of water.
~~~
bartread
This is poetic, and somewhat funny, but also kind of nonsense.
The article pretty much nails it when it talks about choice of tools,
frameworks, and libraries being dictated by the kind of problem you want to
solve. For me, if I'm going to add another library or tool into the mix, it
has to be because it's adding some clear value to what I'm doing. If not, it
stays out.
Classic example: I have a games site I'm working on that uses lodash, and only
lodash (actually only a subset), because a key factor for me is keeping that
page weight down so people accessing the site via mobile on a capped data plan
and a laggy connection don't have to wait an age for the game to load because
I'm downloading 1MB of minified JavaScript libraries. That means that some
things I need to do are more work than they otherwise might be for me, but
that's OK because it's helping me hit my objectives.
All of that being said, whether you like it or not, "How it feels to learn
JavaScript in 2016," makes some valid points, and certainly captures that
feeling of being completely overwhelmed that I hadn't experienced with other
languages and ecosystems. You can substitute 2013 for 2016 and it exactly
resonates with the way I felt back then, when I returned to JavaScript after a
10+ year absence.
The maligned "snark" just goes with the territory. As far as I can see the
JavaScript community seems to thrive on upheaval and butthurt; it feels
professionally immature and full of easily bruised egos who want to be right
and don't give two hoots about the consequences of the willy-nilly reification
of their opinions. Just a couple of examples:
[https://medium.com/@azerbike/i-ve-just-liberated-my-
modules-...](https://medium.com/@azerbike/i-ve-just-liberated-my-
modules-9045c06be67c#.jg5p30l6u)
[https://news.ycombinator.com/item?id=7320833](https://news.ycombinator.com/item?id=7320833)
(sadly the commentary has gone from the original post on this one)
And the level of opinionation _is_ extreme. People love to talk about the
"right" way of doing things. And, "Oh you're still using X? You should be
using Y instead now." is a line I've been on the receiving end of quite a few
times now. It gets boring.
I'm fed up of "opinionated" frameworks and libraries and the people involved
in them talking about the "right" way of doing things as if it came down from
on high carved on stone tablets and isn't in fact just a bunch of stuff they
made up themselves. What I need are things that plug together easily to
deliver value and help solve a problem, with less of the sass(1).
_For me the interesting thing to be doing is building working software that
people will find valuable and actually use and, hopefully, enjoy doing so.
Languages, frameworks, and libraries are nothing more than a means to an end._
(1) Sorry, it just popped out.
------
shakna
Bias: I don't like JavaScript.
I think this article is the perfect example of what is wrong with the
ecosystem.
It isn't that there are too many frameworks. I regularly choose between five
or six web frameworks in Python.
However, in Python, I've never had someone say that the framework was the
wrong tool.
The Flask community doesn't crusade that Bottle is bad. They are similar, and
have tried to work together, despite different philosophies.
The JS community seems to not just uphold a framework like React, they
practically worship it. Suggesting huge complicated things, for something as
simple as a HN site.
It isn't just, "Ooh! Shiny!"
It's "Idiot! Why didn't you use the shiny?"
This toxicity is barely under the surface, and is the shining influence of
those new developers who choose the language.
The ecosystem isn't the issue. The culture that promotes it, is.
------
dhruvkar
I agree with the gist of this article. Choose the right tools for the job.
But as with anything, judgmental snark also goes both ways. The Javascript
ecosystem is more of a mess than other, similarly popular, language
ecosystems. There's nothing wrong with acknowledging that. Although you're
right, a little less snark wouldn't hurt.
------
jbb555
The only people who think that javascript and the javascript "ecosystem" is
anything other than an utter disaster seem to be those who've never used
anything else.
------
deagler
The one image that describes JavaScript perfectly:
[https://i.imgur.com/qPlBUp5.png](https://i.imgur.com/qPlBUp5.png)
Not much more needs to be said, It amazes me that there are people that
actually think JavaScript is an "important" language, It's an archaic mess
that has simply been polished over and made to look shiny(as the article
states).
If you polish a dirty shoe, It's just a dirty shoe that's shiny.
~~~
ralusek
This image is absolutely ridiculous.
Problem: JavaScript won't run outside browser.
Solution: V8 (V8 was built for Chrome, btw, NodeJS is what took V8 outside of the browser)
Problem: JavaScript is single threaded by design. (This isn't a problem, you even said BY DESIGN)
Solution: Asynchronous programming. (This is a solution that literally allowed applications running on 20-30 machines to drop to 2 machines and still see over an order of magnitude performance improvements).
Problem: Callback hell. (Callback hell is NOT the way any reasonable Node developer programs. Promises are completely sensible to reason through).
Solution: Compile to better language (Promises are native)
I don't know how many times I have to post this, but this is what good Node
code looks like.
function doComplexAsyncTask() {
return Promise.join(
doParallelAsyncTask1(),
doParallelAsyncTask2(),
doParallelAsyncTask3()
)
.spread((result1, result2, result3) => {
let combo = doSomething(result1, result2, result3);
return saveComboToDBAsync(combo);
})
.then(result => doSomethingElseAsync(result))
.catch(err => handleError(err));
}
And that's an overly complicated example. And then from anywhere else in the
code you can call
doComplexAsyncTask()
.then(result => doSomethingWithResultAsync(result));
There is no callback hell. The error handling is trivial. Doing parallel tasks
is trivial. And that "single threaded" issue is not an issue. The moment
parallel tasks1, 2, and 3 START, your application is already serving the next
request. There is 100% CPU availability for every single thread, not a single
moment is wasted blocking. And if you're running on a multi-core machine, you
use node clustering to get 100% CPU usage of all of the cores.
People do just regurgitate the same nonsense over and over.
------
artellectual
I agree with the message of the article.
It can be daunting to start out. I think the problem is not following the fad
and do your own research into what solves your problem.
I felt the same way when I started. So I documented every step I took and I
can say with confidence I am comfortable in the JavaScript universe.
If you are interested in how I learned it you can follow me here:
[https://www.codemy.net/channels/react-
foundation](https://www.codemy.net/channels/react-foundation)
~~~
dagw
_I am comfortable in the JavaScript universe._
Are you comfortable in _the_ JavaScript universe or in _your_ JavaScript
universe?
While I'm reasonably comfortable writing JavaScript on my projects, I feel
that if I where to walk onto a random JavaScript team I'd have no idea what
was going on and equally if a random developer where to pick up my JavaScript
project the first thing they would do would be to re-write everything to
conform to their 'universe'.
------
atishay811
Javascript is not just JavaScript. It is HTML, CSS and JavaScript. And all
three are evolving at a rapid pace. The tools and frameworks need to evolve
too.
------
zbro
Indeed. Seems to be as is for programming patterns; it needs to solve one or
more problems.
| {
"pile_set_name": "HackerNews"
} |
Narrowed range of potential warming from 3°C to 1.2°C - calebm
https://www.wired.com/story/the-dizzying-science-of-climate-change-gets-a-bit-clearer/
======
calebm
The original research paper is paywalled (hence link to article) here:
[https://www.nature.com/articles/nature25450](https://www.nature.com/articles/nature25450)
| {
"pile_set_name": "HackerNews"
} |
Google Ups Ante with 1000 Patents from IBM - btrain
http://www.pcworld.com/article/236999/google_ups_ante_with_1000_patents_from_ibm.html
======
MaxPresman
Interesting how Google tried to downplay the "patent battle" and purchased so
many patents on the next day. Just amusing, I guess.
| {
"pile_set_name": "HackerNews"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.