The Wayback Machine - https://web.archive.org/web/20200525124613/https://github.com/topics/translations
Skip to content
#

translations

Here are 302 public repositories matching this topic...

ParanoidBeing
ParanoidBeing commented Feb 7, 2020

from the docs of CoroutineScope

  • Manual implementation of this interface is not recommended, implementation by delegation should be preferred instead.
  • By convention, the [context of a scope][CoroutineScope.coroutineContext] should contain an instance of a [job][Job] to enforce structured concurrency.

We can convert

class BrowserActivity : DuckDuckGoActivity(), CoroutineScope

josegonzalez
josegonzalez commented Jan 6, 2020

I was going an org I manage and saw that I didn't have an org-wide code of conduct, so wanted to check if CC had an updated. Noticed that the 2.0 version came out - cool! - but the changelog wasn't updated - womp womp.

Would be awesome if someone more knowledgeable about the update could get that updated (I'm reading through it now myself, might get a chance to make the PR).

Thanks in advanc

JChehe
JChehe commented Aug 12, 2018

原文:[Circle Packing][1]

圆形填充是一个非常神奇的效果。蕴含数学魅力的它,看似非常复杂。在本教程中,我们将创建一个有趣的圆形填充效果。尽管它实现起来并不特别高效,但仍然很快。

老规矩,初始化 canvas。

var canvas = document.querySelector('canvas');
var context = canvas.getContext('2d');

var size = window.innerWidth;
canvas.width = size;
canvas.height = size;

context.lineWidth = 2;

现在,我将阐述一下实现流程,并因此而确定需要哪些变量。该实现流程并不是最高效的,但能完成工作。

流程如下:

  1. 创建一个圆。
GasimGasimzada
GasimGasimzada commented Sep 3, 2018

I am trying to migrate old database from another framework into django and currently, I am having trouble saving the newly generated models. I get an error when I do the following:

title_translated = create_translated_data(r[4])
content_translated = create_translated_data(r[3])
new_post = Post.objects.create() # <-- This is where I get my error.

t = {}

for loc, data in title_transl

Improve this page

Add a description, image, and links to the translations topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the translations topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.