November 2018
240 tweets
Student loan scam through EddyStone URL notifications:
https://twitter.com/buzz/status/1058143928203980800
This happens when big corporations contribute to #opensource:
https://twitter.com/ZephyrIoT/status/1058097599893422080
@mirjam_diala Just run a little more ;-)
@matthiasnoback I call them Transformers.
@dtanzer Hm, side-effects could be ok if it needs
to set up some state before the other side could use it.
I have 15K+ pictures on Flickr, and I'm happy to pay for it.
http://blog.flickr.net/en/2018/11/01/changing-flickr-free-accounts-1000-photos/
@mirjam_diala I wish I could be there ...
10:40 and the sun is barely up. #trondheim 🇧🇻
@MaritvanDijk77 I try to make this a habit
during work time. Because it is part of my job therefore I should be able to
learn new skills for work on work-time. If not, it's a signal that my
organization is on crunch-time too much and won't move forward.
#Trondheim 🇧🇻 times 2.
This is the best "Why guys is not gender neutral" explanation I know that even
tech bros will get: "Just google “group of guys”. See any women? No."
https://twitter.com/vicbergquist/status/1013750468063977472
Hiking up Geitfjellet and it's very windy up here! #trondheim 🇧🇻


@m0vas
@NordicTweets I think we could submit a talk
or two there, don't we?!
https://twitter.com/nordictestdays/status/1059062706609758209?s=19
@vicbergquist Wow, so cool! Bring them some
colours!!
It would be great if more countries would follow Iceland's example:
https://www.theguardian.com/world/2011/nov/30/iceland-recognises-palestinian-state?CMP=share_btn_tw
Stellar example of how to implement a conference code of conduct:
https://twitter.com/AgileTDZone/status/1059422646599929857
@daberni Yes, nevertheless the list of UN
member states which do not until today is still very long:
https://en.wikipedia.org/wiki/International_recognition_of_the_State_of_Palestine#UN_member_states_2
@mirjam_diala
@dachfest On stage you will speak slightly
faster, because of Adrenaline. Nevertheless, do not count on that to give you
50% less talk time! ;-)
Holy shit, Daredevil episode 9 of season 3 got me all:
Are developers paid to build what others envision or is there more value in
developers who challenge that vision?
So awesome to see that we have 25 registrations for
@codefreeze_fi 2019 already! And this is
not including the 6+ kids!
Join is in January for Northern Lights and the most magical software conference
in the world!
https://coderbyheart.com/codefreeze-brings-the-magic-of-socrates-to-lapland/
@jocrossick Yes, I agree. There are
destructive ways to challenge, which we should always look out for, especially
in ourselves.
@dtraub
@codefreeze_fi There is a direct flight
from FRA:
https://www.hipmunk.com/flights?utm_source=googlep&utm_medium=search_brand&utm_campaign=1_brand_top_terms_int&utm_keyword=hipmunk&utm_content=hipmunk_exact&gclid=Cj0KCQiAlIXfBRCpARIsAKvManxB_Lvao0bvfDE_aXF5Hvn52FlervSnyEJQpzxgo1A2o0BeK-6DX1QaArpMEALw_wcB#f=FRA;t=IVL;d=2019-01-05;r=2019-01-12;is_search_for_business=false
TFW you can finally start your editor to work on some code.
Learn all there is know about next-generation short-range and long-range
wireless tech at @NordicTweets tech tour!
https://twitter.com/NordicTweets/status/1059455859821105160
@miskaknapek I also do have to do non-coding
work which enables others to code...
Open Plan Offices:
https://twitter.com/Dilbert_Daily/status/1059812145834217472
@rubstrauber Short meeting!
@benjamin Oh, it gets really good! It's a slow
start, true, but hang in there.
@Ravetracer
@the_prodigy LIGHT UP THE FUCKING SKY ‼️
@vannsl
@marcoemrich In my experience often what they
describe is what they want, but not what they need.
Facebook’s #GraphQL gets its own #opensource foundation
https://techcrunch.com/2018/11/06/facebooks-graphql-gets-its-own-open-source-foundation/
Winter is closing in ... #trondheim 🇧🇻
"Behind the facade of humanlike visual abilities, #AI does not understand the
inputs they process or the outputs they produce. The lack of such understanding
renders these programs susceptible to unexpected errors and undetectable
attacks."
https://www.nytimes.com/2018/11/05/opinion/artificial-intelligence-machine-learning.html
.@gemcfadyen coined my new favorite code smell
name: "Primitive Obsession"!
https://8thlight.com/blog/georgina-mcfadyen/2017/01/19/common-code-smells.html
Ohh, nice. If you use CloudFormation to manage your
@awscloud lambdas they will show up as
"Applications":
https://docs.aws.amazon.com/lambda/latest/dg/deploying-lambda-apps.html
#lambda #Serverless
I have retweeted it before, but @JSKongress
effort to encourage first time speakers is such a fantastic measure to increase
#diversity at conferences that I can't push this enough! 🙌💯🦄🤸
https://twitter.com/JSKongress/status/1059815421946314752
@Lynoure
@shutupmay Or when we realized the first time
that we will lose friends, and sometimes it is our fault.
Good Morning #Trondheim 🇧🇻
Energy = Milk · Coffee² via @MuchCoffee
@MuchCoffee What I see right now:
@EmmaWedekind I started missing my new
hometown 6 month after I moved there. I constantly think about it, because I am
still excited to be here.
@ktrajchevska
@ExploreAdeva @WomenInTechFr Congrats, this
is an awesome achievement!
A map of the IPv4 address space: http://maps.measurement-factory.com/
@SilviaHundegger
@dachfest
@pixelkind
@anna_schef
@mirjam_diala
@ConfBuddy Have an awesome trip!
So, you need to integrate a third-party service using their RESTful API and
expose this functionality to your users.
"That's an easy #architecture to build", you think, "I'll create a proxy with a
thin authentication layer on top of it. Problem solved."
Not so fast ...
Doing this you will make the service quality of this third-party API your
problem. If it is down, your users will see a timeout. If it is slow, your users
will have a bad experience when interacting with this part of your service -
they won't know the difference.
A proxy will also tightly couple your client implementations to the API of the
third party service, because it passes endpoints and workflows 1:1 through. If
the API of the third party changes (and it will) this needs to trickle down to
all clients.
There is a better way to do it. Instead of a proxy, write a client service (is
that the right name?). A client service is a high-level abstraction of the
functionality and uses your domain language (👋 #DDD) and records user
intentions, and processes these actions out of band.
This means that users will have immediate feedback when interacting with your
API for that service (202 Accepted) and don't have to wait for a slow third
party API.
The service will try to full-fill the intention in the background which provides
opportunity to implement retry-strategies and handle degraded service quality
gracefully. This also makes the rest of your system agnostic to the details of
that API (they use the client service).
The results of operations are made available through the read model and through
notifications. This state is cached and can be returned very fast without delay.
(👋 #CQRS)
State can be fetched from the third-party API regularly and in a controlled
manner. That means your users cannot hammer the third-party API with requests
and get you blocked.
As architects and engineers we need to not forget what software is great for,
and that our easy often means letting users do work which can be solved with
software.
Software has unlimited patience, users don't.
React is at a high level a descriptive UI language, that's why this works and
actually makes sense.
https://twitter.com/HenrikJoreteg/status/1060763280107421697
Let's add a new dialect for English (EU): which uses Y-m-d H:i:s.
@emsuiko
@netzvagabund
@html5test Yes, the Thingy is really cool as a
test device for #WebBluetooth, too, which I think @html5test is speaking a lot
about.
@emsuiko
@netzvagabund
@html5test Check out our latest feature preview
at https://docs.api.nrfcloud.com/Thingy52 - you can use the Thingy:52 to send
you alerts to Slack from its environment sensors!
@TimoHirt
@VaamoTech Yes, I heard about SCS before. IMHO
these principles are already covered in REST in Practice: Hypermedia and Systems
Architecture https://g.co/kgs/3fJbWw - but it's good that it's getting some
more attention.
@plaugg I haven't read that one. Looks
interesting! Thanks for the Tip, Sven!
Did some grooming on @dotHIV's hosting
architecture today. It'a great that we still have some fans who keep using this
TLD.
Here is a trip back down memory lane:
https://www.youtube.com/watch?v=l3ZHd8qbSpE
@EmmaWedekind Old-Man's War Series by
@scalzi
It's fucking rich to talk down to beginners. Do you think the speakers you have
now were born with fantastic talking skills? If you truly care about new
technologies and trends you but stick to veteran speakers, you will soon be
obsolete. @CraftConf
https://twitter.com/_StephanRoth/status/1061863264198500354
This monster track made my morning when it came up on my playlists while cycling
to work: #trancefamily #trondheim https://youtu.be/HWhqTieXhlA

@Niklas_L If it is you main focus of work.
@Niklas_L Then my answer is: 1
I am so stoked to be part of this conference! Learn all about #testing at a
fantastic location with a wonderfully diverse set of speakers! ☀️🌈🇪🇸👷♀️
https://twitter.com/EuroTestingConf/status/1062353641846292480
@ulfkar
@AndyScherzinger Irgendwie schräg das man
daraus wieder eine "Gruppe" machen muss, bei der es wieder Personen gibt die
"drin" sind und solche die es nicht sind. Hoffentlich sind diese Gilden auch
radikal agil und sehr flüchtige Organismen.
Good Morning #trondheim
@gr2m Why can I only push ♥️ once here @JACK!!!
Sunset in #Trondheim 🇧🇻
Computering while female:
https://twitter.com/lanettecream/status/1063029593765044224
@thomrinke
@alex_schl
@kriscorbus
@spkeazee
@GermanTesting That's cool! Can you
elaborate a little what kind of support you have planned for first-time rs? It's
not mentioned on the CfP page.
@PiaOnTheMove Als wir noch in Deutschland
gewohnt haben: Wochenmarkt.
@iamjoyheron I was calling myself a
full-stack developer for a very long time, only recently did I think that and
have now been think of being a full-stack literate: I know the entire stack,
but I can only really excel at backend/architecture.
@thomrinke
@alex_schl
@kriscorbus
@spkeazee
@GermanTesting Thanks for that explanation,
I think this information will definitely help first-timers to better understand
the process and what kind of support they can expect.
#trondheim 🇧🇻 is saying "God Morgen"!
Since today you can finally listen to Germany's best Punk Rock band on
@Spotify! 🤘
https://open.spotify.com/artist/0cbL6CYnRqpAxf1evwUVQD?si=2AwNjODQQMGZm_PYIe518g
@amokleben Eisgekuehler Bommerlunder ...
@nagel_kl
@NordicTweets Yes, I heard! I hope you liked
what we had to offer?
Tonight we have a special serving of Sabrua Sushi just for the @NorwayOnboard
expats! #trondheim 🇧🇻



Die Bundeswehr ist auf dem rechten Auge blind:
https://twitter.com/martinkaul/status/1063518395855966213
@FranziskaNaja Nicht auf dumme Ideen
kommen! https://twitter.com/wes_chu/status/1062745801833701376?s=19
Ekaterina, thank you so much for live-sharing your
@AgileTD experience! 🙏 I now have another
fantastic conference on my bucket list.
https://twitter.com/KatjaBudnikov/status/1063485152813289477
@FranziskaNaja Ok, als Zeichnung, ja das
hätte was, nicht als TEXT!
𝔗𝔲𝔯𝔨𝔫𝔞𝔲𝔣
@FranziskaNaja ... es gibt echt alles als
Tattoo 😯
@mailbox_org das neue UI funktioniert nicht
so super auf meinem Moto G6, die Slide-Gesten ziehen häufig die rechte weiße
Leiste in die View und dann kann ich den "Delete"-Swipe nicht abschließen.
"Hei, we are ACME Consultancy and we are a team of fantastic software engineers
building the best and most modern apps for the connected world.
Want to read about what we believe to be the future of technology?
Here is a PDF optimized for your printer. kthxbye"
@m4nl5r
@VolkerGoebbels Wow, quite a lot of tech
positions open. Did you know that @benjamin,
@c089 and
@rradczewski have teamed up to help you
improve your hiring? You should definitely reach out to them.
@VolkerGoebbels That will be an
interesting challenge to find an engineering lead position which is fully or
mostly remote in Germany...
The State of the Octoverse: top programming languages of 2018
https://blog.github.com/2018-11-15-state-of-the-octoverse-top-programming-languages/
How blind auditions help orchestras to eliminate gender bias:
https://www.theguardian.com/women-in-leadership/2013/oct/14/blind-auditions-orchestras-gender-bias
Oh, this is such a juicy post with a serious background: #iot devices can easily
collect highly sensitive personal information. Security holes are totally not
sexy!
https://sec-consult.com/en/blog/2018/02/internet-of-dildos-a-long-way-to-a-vibrant-future-from-iot-to-iod/
AWS CDK > CloudFormation.yaml
https://twitter.com/davefarley77/status/1063706357646442496
"You can even type loud on silent keyboards..."
My wife @kamilleblumm knows all my
superhuman skills!
At @codetalkshh I was in the panel about
#backend languages. You can see the whole session on YouTube:
https://www.youtube.com/watch?v=7n3ROn3yABY
Here are the sections where I speak on behalf of the language that I love:
#JavaScript >
Where will #JavaScript be in 5 years?
And will #JavaScript still be there in 5 years?
Does #JavaScript scale both in the technical sense and within teams?
Is #JavaScript a good language for programming beginners?
But obviously not everything is perfect with #JavaScript:
@Paratron
@kamilleblumm The most silent keyboard I
ever used was this thing: https://www.youtube.com/watch?v=1Sd40SJt4T0
Ultra-silent but the typing experience is horrible.
@Paratron
@kamilleblumm No that does not really make a
difference, because you get no feedback and have no way to feel where your
fingers are...
@Paratron
@CodeDoor
@Code_Door Shit, yes. Thanks! 🙏
Check out @Code_Door - they help people from
underrepresented groups learn to program!
@emsuiko 👋 These stickers really traveled far by
now.
Yes! Don't mistake an IoT device for a SmartPhone which is always connected with
high bandwidth so applications can dump tons of data or even stream it to the
cloud. Developing #cellular #iot products requires a paradigm shift in the
application architecture.
https://twitter.com/NordicTweets/status/1064416987349221376
@FrauMamonova We are so into bread, that we have a semi-self-ironic cartoon
character called Bernd das Brot!
@sepnamdar @ICPF_PSI @SoatGroup
@SoatAgile Congrats, Sepehr! Did you know that
you can get this certification for free?
https://coderbyheart.com/become-a-certified-software-craftsperson/
@Aimee_Knight
@fhinkel @npmjs Oh
yesss! More amazing engineers making my life better! Congrats!!!
last week in cryptos: https://twitter.com/berkes/status/1064546642450415617
That there is the need for a Top 500 of billionaires is a perversion on its own.
No human needs a billion $, let alone many of them.
https://twitter.com/BreeNewsome/status/1064514080566910977
@sepnamdar @ICPF_PSI @SoatGroup
@SoatAgile Interesting, so ICPF & PSI have
certified that your methodologies to train other to be a software crafter are
according to their standards?
TIL: there is Goat Yoga! 🤩
https://twitter.com/DirtbikeAmbah/status/1063281013072297985
Writing tests with a fantastic tool? Ultimate developer satisfaction.
https://twitter.com/rickhanlonii/status/1064497696923402240
@gr2m
@SemanticRelease
@pvdlg_ That's great, I'll definitely give it a
try.
Could you consider using something else then master? @SemanticRelease could
use this opportunity to set an example and not proliferate the use of this
problematic term (it's also not correct). How about "latest", or "main"?
@pvdlg_ @gr2m
@SemanticRelease I understand your
motivation. Thanks for considering it.
@pvdlg_ @gr2m
@SemanticRelease Yes, but it is not
correct to describe release channels. What is a master release?
If you are releasing from other branches, too, they are not "slaves".
Using master to describe the relationship between these branches is wrong. IMHO
ofc.
Yes, the @foofighters are coming to #Norway
🇳🇴 and we have tickets!!!! 🤘🥁🎸🎤
https://twitter.com/foofighters/status/1064793664554061824
The #JavaScript SDK for @awscloud has been
revamped in #TypeScript and is now available as a developer preview:
https://aws.amazon.com/blogs/developer/new-aws-sdk-for-javascript-developer-preview/
@amokleben Ja, und einem
@theRoostStand.
❓👉 Hei #Git users, is it important for you to have a "master" branch in your
repository?
RT for reach, thanks! 🙏
@HeikeRehm
@UuMacher LOOK HUMAN, WHY PUT DIS STUPID PAPER
AROUND FOOD?!
@awoods
@heiglandreas I use a different name all day
and I never need to specify it.
When I clone from GitHub I am already on that branch (which is set as default on
GitHub).
It's no extra effort for me.
@welsayedaly
@storchp Why is a branch called master necessary
for bug fixes?
@HeikeRehm
@UuMacher So wird das nix mit der Social Media
Karriere!
@UuMacher
@HeikeRehm Mit vollem Körpereinsatz!
@HeikeRehm
@UuMacher Diese Grazie!
@anna_schef
@HeikeRehm
@UuMacher Man könnte denken dass Office wäre zu
klein. 😂
@MrHenHan @heiglandreas
@gr2m
@betsythemuffin
@WeCohere Is
@benjamin's https://cto.coffee on that list?
It's very young but has more women queued up in the next episodes.
@heiglandreas
@gr2m It's about the name of the branch where you
commit your most recent code to.
@liran_tal Yes, to rephrase the Q: do you need
your main line branch to have the name "master"?
@liran_tal
/status/1064947157210447873
To see if it's a good idea now to involve bigger stakeholders who can make a
difference in this discussion.
Venus is currently visible very good in the eastern sky before sunrise:
#trondheim 🇧🇻


@ManuelBieh So, click Yes.
@ManuelBieh And since you think that, could
you share your reasons?
@toddlibby So I take it that you are not
attached to naming the main branch in your git repository not "master" but e.g.
"latest", or "main"?
@toddlibby If it is not “master who holds a
slave branch” then there it is actually incorrect to call it that.
What are the reasons you need to keep calling it something that does not reflect
its function?
@ManuelBieh It is easy for a white German to
proclaim that slavery is over, because it never affected you personally.
@SamirTalwar Imagine an AI could do that
automatically ...
Write a test. Find a bug.
Instant gratification is sooo easy for developers.
@toddlibby Copies are by definition the same,
not a modification - but branches are.
A master branch does not control other branches, rather the opposite is often
true: code gets merged into the main branch from other branches.
@toddlibby This is just your opinion, let me
have mine, too. Thanks.
@cowglow But you have to fix the bugs, not only
find them. Which will introduce new bugs. Repeat, repeat, repeat. 😁
@amenthes_de Right, I was asking whether the
branch where you commit your code to by default has to be called "master".
@SamirTalwar Yeah, sorry 'bout that.
/status/1065270985698525184
@AlizeNero
@kotzendekrabbe Yes, right. I now know
that the question was not precise enough. 🤦♂️ I'll make a new poll.
Hey #Git users, 👂 Typically we use a branch called "master" as the default
branch in repos. Do you need it to have that name? If Yes, please specify why.
RT for reach! 🙏
Sorry it's me again, I hope this time the question is more clear. Than in the
previous poll.
Some people were (rightfully) answering wether there should be one branch or
multiple separate ones.
/status/1065304094913511425
Nevertheless the discussion in the previous poll is interesting:
/status/1064947054286381057
@c089
@SamirTalwar I made a new one on this
immutable Twitter thing:
/status/1065304094913511425
@vonneudeck
@AlizeNero But the other branches are no
copies, they start as copies but they are there because they exist because of
their difference.
@ilpeach In SVN you would typically have a trunk.
@agarani95 @LearningNerd Yeah I see. It can
be hard to change old habits.
@mroliff
@divinetechygirl That's a solid reason!
Habits die hard.
Did @KentBeck just join the
https://www.softwarecrafters.org/ Slack?!
@tante
@kringkaste Mich würde ja interessieren wie
die Datenschutzkonforme Blockchain ausssieht die persönliche Daten speichert...
(WTF!)
@franzen_simon
@Manawyrm Master is technically wrong. Master is
usually associated with Master/Slave. What are Slave branches then? So we can
find better words for it.
@franzen_simon
@Manawyrm I do think that we should find another
name for it because of that, too.
@MayaPosch Which in the context of git is not a
good choice. Other branches are created as copies, then modified and the changes
are applied back to the source branch. So it is receiving changes, not
controlling.
Hold on to your socks! This is going to set a new trend: #ConfBuffs!
https://twitter.com/codefreeze_fi/status/1065625541284438017
@WouterHu It does not define it. It just picks the term without explanation.
@MayaPosch Aren't releases snapshots of a
certain state of the main branch? That's why I use tags to mark releases, not
branches. A release is never changed, but there will be a new release (as a new
tag).
@WouterHu Click Yes and be done with it.
The ISS is also like any other office:
https://twitter.com/Astro_Alex/status/1064941806952083456
@movetodevnull Just click Yes.
@phermens You need to pick a side.
What's your but?
@fhinkel
@movetodevnull Thank you for that link!
@movetodevnull
@fhinkel It has a negative emotional meaning but
"master branch" is also technically wrong in many cases.
And if we never change broken things, where will we end up?
It's ok that you think this is not worth the effort! I do.
@pinback
@MayaPosch You fix them and make a new release,
from the main branch.
Because when you can release to production with every commit it makes no sense
to roll back.
@phermens 1. That sounds like a bug in the tool,
if you can't have a different name for certain branches. 2. Sure. I think there
are better names which have less ambiguity nevertheless.
@chaos_monster Like A-B Testing polls? So
we can find the one that best answers shows we want to hear :-)
@jschirrmacher Sounds like "production"
would be a good name for that.
@flxwu @vicbergquist Do a search and
replace: s/master/develop/
Done ;-)
Yes, I believe it is technically wrong and also a problematic term because it
bears a negative connotation for some.
In my team I use "saga" as the name for the branch where everybody's work ends
up. And not once did I see a bug because of that branch not being named
"master". https://twitter.com/LeonKira997/status/1066215088129040391
@SomeoneRANRAN Please do tell!
None of those actually say: "We tried but it was terrible so we went back!"
The majority (70%) voted Yes and they seem to have already seen that it is not a
problem at all. https://t.co/N6rokNMXcz
@jocrossick Leader/Follower
@jocrossick Yes! Why not make it something fun
and positive?
@doubleyewdee
@Paxxi Thank you for your consideration.
I understand it is especially hard for developers to change the name of
something.
Let's look at consensus algorithms which one could think would default to using
"master":
Paxos: Leader Raft: Leader Chandra–Toueg: Coordinator
#nomaster /status/1065304094913511425
@amokleben Yes, IMO these names reflect what is
actually happening in the branches.
Winter Lights in #Trondheim 🇧🇻
That thread explains the power of agile software development in four tweets:
https://twitter.com/RonJeffries/status/1065978893222330374
♥️ @dc7590 #darrenrocksrheinmain
https://twitter.com/ManuelaSeubert/status/1066380369660907520
@usercorpse I understand that it is important for you to keep the name. That's
fine.
Hei #RheinMainRocks land, Traum-Mieter gesucht? Diese super lieben Freunde von
mir (und als Gruender des @heimathafenWI
noch dazu einer der Eckpfeiler der digitalen Community in der Region) suchen
eine neue Wohnung in #Wiesbaden.
https://www.facebook.com/photo.php?fbid=10212217163375470&set=a.1098504914030&type=3&theater
@awscloud hoping to see Node.js 10 on #Lambda
announced at #reInvent this week ... 🙏
https://twitter.com/MylesBorins/status/1057305736118722560
People who blame the former maintainer of event-stream also complain that they
cannot win a Tour de France with a bike they bought at the flea-market.
.@awscloud now has a workflow builder for #IoT
projects: https://aws.amazon.com/iot-things-graph/
The morning twilight here is amazing (0925). #trondheim 🇧🇻
Yes, some manage to do that with even less!
https://twitter.com/elonmusk/status/1067173497909141504
When you have an API with three different key formats in one response body ...
{ lowercase: "...", CamelCase: "...", snake_case: "...", }
you know they truly do #microservices, or?!
@MaritvanDijk77 Let's wait until they add
the next field ;-)
Oh, hello @awscloud CloudWatch Logs Insights,
seems like we are finally getting better search for our logs!
@heitor_lessa are you planning to add
support for subscriptions which are not results of a mutation in appsync?
E.g. assume that I have a business event happening without user interaction and
I would notify the user of that.
@undef_obj
@heitor_lessa Awesome, thanks!
AWS releases #iot Events which lets you react to sensor events in your IoT
products: https://aws.amazon.com/iot-events/
Cool, @Twitter is getting a Scandinavian mode:
barely any light during day. 🇧🇻
@migueljvaz Where did you read about the
prices?
@benjamin @jke
@alipasha
@legerdemain Das
@bc_rm war also ein tolles Event für den Mik(k)a.
Wenn man mehr solche Typen auf seinen Events haben will, sollte man dem ihrem
Beispiel folgen. BarCamper nehmen sowas natürlich auch wahr und entscheiden dann
ganz getreu dem Motto: du bist da wo es wichtig für dich ist.
The results are in: 2/3 out of 900 are ok with ditching "master" as the name for
the default branch. @github
@gr2m
/status/1065304094913511425
@migueljvaz Thanks, I did not manage find that
on the mobile view. Yes indeed, very cheap, well in line with the low IoT costs.
If Amazon does not need a Blockchain, why do you?!
https://twitter.com/KateClarkTweets/status/1067831416728121344
@gr2m @npmjs No,
because of you build the lambda with webpack they get dropped anyway.
But if you want to have them in a separate package, contribute them to
https://github.com/DefinitelyTyped/DefinitelyTyped
@codePrincess Ja, genau. Y?!
@alipasha Sure, they give you everything you
need to run it (EC2). Why would they not take your money?!
@benjamin Isn't it?! Aerosmith and Run DMC v2?!
It's cool to see that announcement because I worked a little on this project to
make it happen.
Developer Docs:
https://docs.aws.amazon.com/freertos/latest/userguide/ble-demo.html
#ble #iot #AWSreInvent2018 #greengrass
https://twitter.com/NordicTweets/status/1067432614343000066
I just discovered I had an additional #firstprinciple: Dont use global state
like env variables in modules
https://github.com/coderbyheart/first-principles/issues/10
I wonder if #JavaScript people will get all mad at me if I stop using classes to
describe "Service Objects":
https://gist.github.com/coderbyheart/bf6d16c6bf3d08acd547642a4d7e3e07 >
Because right now I do have Service Objects, which have a constructor where I
pass in dependencies, and I then use these dependencies in instance methods. But
the instance methods are side-effect free, meaning that basically all my object
members are declared as private readonly.
So, why not ditch the class shell as a "dependency holder" and only use
functions?
@jschirrmacher I can clean that up with
binding the dependencies before using the methods later.
Some people will rather wait a few days for their car to arrive instead of using
public transport. 🤷♂️ https://twitter.com/elonmusk/status/1067967799547449344
AWS CDK is really amazing and this guide will get you started:
https://twitter.com/jason_fulghum/status/1068266876365549569
In 2017 wussten nur 10%, dass #HIV unter Therapie beim Sex nicht übertragbar
ist. Die @Dt_AIDS_Hilfe möchte das Wissen
dazu verdoppeln, mit einer @dotHIV
Kampagnen-Seite: https://wissen-verdoppeln.hiv/ #wissenverdoppeln
@Dt_AIDS_Hilfe Hei, der Twitter-Text auf
der #wissenverdoppeln Seite ist zu lang. Nutzer müssen den anpassen bevor sie
ihn tweeten können:


