DEV Community

Cover image for Test Post
suntong
suntong

Posted on • Updated on

Test Post

 

Topic 1

Inline-style image:
alt text

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:

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

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);
}
Enter fullscreen mode Exit fullscreen mode

Podcast Episode

play pause Base.cs Podcast

Post

User

suntong image

suntong

Github

gist

Issue

Allow Login with Gitlab/Your Site #242

c33s avatar
c33s posted on

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

GitHub logo forem / forem

For empowering community 🌱


Forem 🌱

For Empowering Community

ruby version rails version Travis Status for forem/forem Code Climate maintainability Code Climate technical debt CodeTriage badge Dependabot Badge GitPod badge Netlify badge GitHub code size in bytes GitHub commit activity GitHub issues ready for dev Honeybadger badge Knapsack Pro Parallel CI builds for dev.to

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

Instagram

Twitter

repl.it

Runkit Embed

console.log("Place javascript here!");

Speaker Deck

YouTube

Credit

The cover image is obtained from loremipsum.io.

Top comments (3)

Collapse
 
suntong profile image
suntong

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);
}
Collapse
 
suntong profile image
suntong

comment 2

Collapse
 
suntong profile image
suntong

comment 1