Topic 1
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Itaque rursus eadem ratione, qua sum paulo ante usus, haerebitis. Cur iustitia laudatur? Sit ista in Graecorum levitate perversitas, qui maledictis insectantur eos, a quibus de veritate dissentiunt. Tanta vis admonitionis inest in locis; Sed id ne cogitari quidem potest quale sit, ut non repugnet ipsum sibi. Quo igitur, inquit, modo?
Sub point 11
Unum nescio, quo modo possit, si luxuriosus sit, finitas cupiditates habere. Verum tamen cum de rebus grandioribus dicas, ipsae res verba rapiunt;
Topic 2
Duo Reges: constructio interrete. Audio equidem philosophi vocem, Epicure, sed quid tibi dicendum sit oblitus es. De illis, cum volemus. Itaque et manendi in vita et migrandi ratio omnis iis rebus, quas supra dixi, metienda. Quo modo autem optimum, si bonum praeterea nullum est? Quo plebiscito decreta a senatu est consuli quaestio Cn. An dolor longissimus quisque miserrimus, voluptatem non optabiliorem diuturnitas facit?
Interactive code snippets #9
Dev.to
looks awesome.
Congrats!
I was thinking of an integration of the klipse plugin into dev.to to allow blog writers to have interactive code snippets in javascript, ruby, python, scheme or ocaml.
And write cool blog posts like:
- http://blog.jrheard.com/procedural-dungeon-generation-drunkards-walk-in-clojurescript
- http://exupero.org/hazard/post/islands/
- http://untangled.io/immutable-js-an-introduction-with-examples-written-for-humans/
What do you say?
Table
https://help.github.com/en/articles/organizing-information-with-tables
You can create tables with pipes | and hyphens -. Hyphens are used to create each column's header, while pipes separate each column. You must include a blank line before your table in order for it to correctly render.
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
Cells can vary in width and do not need to be perfectly aligned within columns. There must be at least three hyphens in each column of the header row.
Command | Description |
---|---|
git status | List all new or modified files |
git diff | Show file differences that haven't been staged |
You can use formatting such as links, inline code blocks, and text styling within your table:
Command | Description |
---|---|
git status |
List all new or modified files |
git diff |
Show file differences that haven't been staged |
Command | Description |
---|---|
`git | |
status` | List all new or modified files |
git diff |
Show file differences that haven't been staged |
Useful embeds
The following are from
Ways to enhance your DEV posts! Useful embeds.
Jess Lee (she/her) for The DEV Team ・ Jul 12 '18 ・ 2 min read
Codepen
DEV
Comment
The curried functions are perfect for this. The arrow syntax lends itself to this.
valueChange = (key) => {
return function (e) {
var obj= {};
state[key] = e.target.value; //<-- this is a bug btw.
this.setState(obj);
}.bind(this);
}
Podcast Episode
Post
Article No Longer Available
User
Github
gist
Issue
Allow Login with Gitlab/Your Site #242
github is not the holy grail nor twitter is, as reaction microsoft bought github i would rather login with gitlab than with github. even better would be, if you handle user login directly on your site.
Repository
Forem 🌱
For Empowering Community
Welcome to the Forem codebase, the platform that powers dev.to. We are so excited to have you. With your help, we can build out Forem’s usability, scalability, and stability to better serve our communities.
What is Forem?
Forem is open source software for building communities. Communities for your peers, customers, fanbases, families, friends, and any other time and space where people need to come together to be part of a collective See our announcement post for a high-level overview of what Forem is.
dev.to (or just DEV) is hosted by Forem. It is a community of software developers who write articles, take part in discussions, and build their professional profiles. We value supportive and constructive dialogue in the pursuit of great code and career growth for all members. The ecosystem spans from beginner to advanced developers, and all are welcome to find their place…
Glitch
repl.it
Runkit Embed
Speaker Deck
YouTube
Credit
The cover image is obtained from loremipsum.io.
Top comments (3)
The curried functions are perfect for this. The arrow syntax lends itself to this.
comment 2
comment 1