truth new born
The youth are at the beginning of their lives, and so the image of truth (reality as it is perceived universally) is also in its beginning stages, not fully developed nor fully understood by the youth.
truth new born
The youth are at the beginning of their lives, and so the image of truth (reality as it is perceived universally) is also in its beginning stages, not fully developed nor fully understood by the youth.
It’s all very well telling Canonical what to do, but someone needs to pay those developers for their time. It’s not free.
Repeatedly posting in this thread that there are problems, won’t actually get anything fixed.
The best place to let the developers know, and track those bugs is in the bug tracker. There are hundreds of forums online, all over the place in many languages. We can’t be expected to read all of them. Anyone with a launchpad ID (thus, anyone who has an account on this discourse instance) has the capability to file a bug. I’d strongly recommend doing so, for each specific issue. Taking just a few minutes to do that will help tremendously.
Just saying “snaps are slow” is not helpful to anyone. Because frankly, they’re not. Some might be, but others aren’t. Using blanket statements which are wildly inaccurate will not help your argument. Bring data to the discussion, not hearsay or hyperbole.
Progress is made of compromises, this implies that we have to consider not only disadvantages, but also the advantages. Advantages do very clearly outweigh disadvantages. This doesn’t mean it perfect, or that work shouldn’t continue to minimize and reduce the disadvantages, but just considering disadvantages is not the correct way.
Only folks who help package Chromium get to decide how Chromium gets packaged. This gives anyone two options: You can get involved and help package Chromium so you have a voice in the decision-making, or not.
We can lay blame for this semantic drift squarely at the feet of trend. Designers and developers eager to try the latest and greatest invite ambiguity in with outstretched arms. Leadership chases perceived value to stay relevant.
However, the W3C provides us with an important clue as to who is right: the download attribute.
The debate about whether a button or link should be used to download a file is a bit silly, as the whole purpose of a link has always been to download content. HTML is a file, and like all other files, it needs to be retrieved from a server and downloaded before it can be presented to a user. The difference between a Photoshop file, HTML, and other understood media files, is that a browser automatically displays the latter two. If one were to link to a Photoshop .psd file, the browser would initiate a document change to render the file, likely be all like, “lol wut?” and then just initiate the OS download prompt. The confusion seems to come from developers getting super literal with the “links go places, buttons perform actions.” Yes, that is true, but links don’t actually go anywhere. They retrieve information and download it. Buttons perform actions, but they don’t inherently “get” documents. While they can be used to get data, it’s often to change state of a current document, not to retrieve and render a new one. They can get data, in regards to the functionality of forms, but it continues to be within the context of updating a web document, not downloading an individual file. Long story short, the download attribute is unique to anchor links for a reason. download augments the inherent functionality of the link retrieving data. It side steps the attempt to render the file in the browser and instead says, “You know what? I’m just going to save this for later…”
It’s worth mentioning that Svelte limits its scope to being only a UI component framework. Like React, it provides the view layer, but it has more batteries included with its component-scoped CSS and extensible stores for state management. Others like Angular and Vue provide a more all-in-one solution with official routers, opinionated state management, CLIs, and more. Sapper is Svelte’s official app framework that adds routing, server-side rendering, code splitting, and some other essential app features, but it has no opinions about state management and beyond. Some devs prefer Svelte’s minimal approach that defers problems to userland, encouraging more innovation, choice, and fragmentation, and other devs prefer a more fully integrated toolkit with a well-supported happy path.
tag?: what scope of provided features / recommended happy path is needed?
What pain point are you perceiving?
Trying to find a new day job is full-time work
There's a huge area of seemingly obvious user-centric products that don't exist simply because there isn't a working business model to support it.
No program is an island. Every program has to hook into the operating system at some point, if nothing else.
delete will only work on properties whose descriptor marks them as configurable.
Svelte by itself is great, but doing a complete PWA (with service workers, etc) that runs and scales on multiple devices with high quality app-like UI controls quickly gets complex. Flutter just provides much better tooling for that out of the box IMO. You are not molding a website into an app, you are just building an app. If I was building a relatively simple web app that is only meant to run on the web, then I might still prefer Svelte in some cases.
That’s how developers create buttons — they add padding to their div containers, not heights.
from my point of view, it is (by far) the best way, to build a layer on top https://github.com/material-components/material-components-web . This is also the path that the Angular Material team has taken, although they have already made a huge effort to create the components themselves.
is not required to point to "svelte": "src/main.html" if you're bundling for es, "module": "dist/main.mjs" would suffice. I mean, it's a good thing to provide a single file, not the whole sources again.
this in particular comes from the addressee
I think the ruling's main point/distinction here is that while submitting a form might be getting consent from the addressee (the person submitting form might be the addressee, if they own the e-mail address they entered), but we can't know that for sure until they confirm by clicking a link in the e-mail.
Only then do we know for sure that the actor submitting the form was the addressee and that the consent ostensibly received via the form was in fact from the addressee. But it could otherwise be the case that they entered someone else's address, and you can't give consent on behalf of someone else!
origin
This is the starting point of creation of life or a living process.
Man, for some reason, I really like this answer. I recognize it's a bit more complicated, but it seems so useful. And given that I'm no bash expert, it leads me to believe that my logic is faulty, and there's something wrong with this methodology, otherwise, I feel others would have given it more praise. So, what's the problem with this function? Is there anything I should be looking out for here?
I think the main thing wrong with it is the eval (which I think can be changed to $("$@") and it's pretty verbose.
Also, there are more concise ways to do it that would probably appeal more to most bash experts...
like set -x
and it does unnecessary things: why save output to a variable? Just let output go to where it would normally go...
So yeah, I can see why this solution isn't very popular. And I'm rather surprised by all the praise comments it's gotten.
Assignments to $-prefixed variables require that the variable be a writable store, and will result in a call to the store's .set method.
const useEffect = (subscribe) => ({ subscribe })
I wondered about that. But as you mention, the control flow makes it tricky, because it's not really a template literal — it's a DSL. I thought perhaps it's better to have something that's explicitly different, than something a bit 'uncanny valley'.
The following examples are minimal, clean starting points using compose file version 2. Again they are not intended as a definitive reference.
There are contradicting definitions: "dependence: one that is relied on", "dependency: something that is dependent on something else", "dependent: one that is dependent" which also says "archaic : DEPENDENCY" which is certainly the inverse of what is usually meant in technology... is it more correct to install the "dependences"? (wiktionary gives it as the plural)
For performance reasons, $: reactive blocks are batched up and run in the next microtask. This is the expected behavior. This is one of the things that we should talk about when we figure out how and where we want to have a section in the docs that goes into more details about reactivity. If you want something that updates synchronously and depends on another value, you can use a derived store:
I'm afraid there's only so much the docs & tutorials can do about something like this actually. When you first read them, you don't get Svelte well enough (since you're reading a tutorial...) for this to make sense to you. Then you try something, encounter a behaviour, question it, understand better... That's learning.
The index.js file is the main entry point and imports and exports everything from internal.js that you want to expose to the outside world.
The internal.js module both imports and exports everything from every local module in the project
Every other module in the project only imports from the internal.js file, and never directly from other files in the project.
The crux of this pattern is to introduce an index.js and internal.js file.
as soon as you have a (indirect) circular dependency, you might be interacting with a half loaded module in your code.
Could you please explain why it is a vulnerability for an attacker to know the user names on a system? Currently External Identity Providers are wildly popular, meaning that user names are personal emails.My amazon account is my email address, my Azure account is my email address and both sites manage highly valuable information that could take a whole company out of business... and yet, they show no concern on hiding user names...
Good question: Why do the big players like Azure not seem to worry? Microsoft, Amazon, Google, etc. too probably. In fact, any email provider. So once someone knows your email address, you are (more) vulnerable to someone trying to hack your account. Makes me wonder if the severity of this problem is overrated.
Irony: He (using his full real name) posts:
thus making himself more of a target. (I hope he does not get targetted though.)
One of Svelte's advantages, for me, is that I can test out ideas with relatively few lines of code. the #with feature could save me from adding a separate component for the content of an #each loop. I get frustrated when I have to create a new file, move the content of the #each clause, import it as a component, and add attributes and create exports for that, and implement events to send messages back, and event handlers, when I just wanted to test a small feature.
Wondering how to get field state from multiple fields at once? People coming from Redux-Form might be wondering where the equivalent of Redux Form's Fields component is, as a way to get state from several fields at once. The answer is that it's not included in the library because it's so easy to write one recursively composing Field components together.
Also, if you don't put that implementation of URLSearchParams in the global scope you're not using it as a polyfill but a ponyfill, and those are meant for your code, not for external dependencies.
first sighting: ponyfill
JavaScript is, of course, a dynamic language that allows you to add and remove objects and their members at any point in time. For many, this is precisely why they enjoy the language: there are very few constraints imposed by the language.
Just like elements can have children... <div> <p>I'm a child of the div</p> </div>...so can components. Before a component can accept children, though, it needs to know where to put them. We do this with the <slot> element.
mixing the turing complete of javascript with the markup of HTML eliminates the readability of JSX so that it is actually harder to parse than a solution like hyperscript
However, this would lead to further divergence. Tooling that is built around the assumptions imposed by template literals wouldn't work. It would undermine the meaning of template literals. It would be necessary to define how JSX behaves within the rest of the ECMAScript grammar within the template literal anyway.
Template literals work well for long embedded DSLs. Unfortunately the syntax noise is substantial when you exit in and out of embedded arbitrary ECMAScript expressions with identifiers in scope.
But it’s really hard to see, because our human brains struggle to think about this Clock function as something for generating discrete snapshots of a clock, instead of representing a persistent thing that changes over time.
conveys the significance of emotionally investing in your children when they are young and being a ‘present father’
Point- the writer states the point of the article
And as an aside, I’m definitely in favor of more debates than sessions in future conferences, since we actually learn more by hearing multiple viewpoints.
About the argument against it, "{@const will make code less consistent ": I think the same is true now, since people can come up with very different ways of dealing with the "computed value inside each loop/if function" problem. Some extract components, some use functions, some will prepare the array differently beforehand.
but this RFC addresses a significant pain point I've had with {#each} blocks doing data visualization and graphics.
This is exactly why I'm in favor of @const. Helpers are fine, except when they're not and turn into boilerplate.
Right, because those are the only 3 instances where new "scopes" are created, which means you're seeing data for (probably) the first time.
good point: means you're seeing data for (probably) the first time.
I like this, mostly because it allows me to write small components without creating another separate sub-component for holding the value simple computation. I get annoyed every time I need to create a component just to hold a variable, or even move the computation away from the relevant location. It reminds me of the days where variables in C had to be declared at the top of the function.
The clean-up function runs before the component is removed from the UI to prevent memory leaks. Additionally, if a component renders multiple times (as they typically do), the previous effect is cleaned up before executing the next effect. In our example, this means a new subscription is created on every update.
The readable store takes a function as a second argument which has its own internal set method, allowing us to wrap any api, like Xstate or Redux that has its own built in subscription model but with a slightly different api.
Putting a browserlist in the project will send a false signal to users. Svelte is only a lib, not an application. The consumer / implementer will have to decide what level of support he wants, according to its constraints/userbase and adjust its build process and polyfills implementation.
A lot of instructions I read say things like npm install niftycommand and then niftycommand. But this will never work unless you have ./node_modules/.bin in your path, will it?
Auto-subscription only works with store variables that are declared (or imported) at the top-level scope of a component.
Commissioner, O. of the. (2020, September 23). Coronavirus (COVID-19) Update: FDA Authorizes First Point-of-Care Antibody Test for COVID-19. FDA; FDA. https://www.fda.gov/news-events/press-announcements/coronavirus-covid-19-update-fda-authorizes-first-point-care-antibody-test-covid-19
Why do I need a global variable? Is the global requirement from ES6 modules (I'd have thought modules would be in a functional scope) or rollup?
Rollup will only resolve relative module IDs by default.
DX: start sapper project; configure eslint; eslint say that svelt should be dep; update package.json; build fails with crypt error; try to figure what the hell; google it; come here (if you have luck); revert package.json; add ignore error to eslint; Maybe we should offer better solution for this.
When the message say function was called outside component initialization first will look at my code and last at my configuration.
If calling query() results in calls to Svelte's context API, then it needs to be called synchronously during component initialization.
Most simple example: <script> import ChildComponent from './Child.svelte'; </script> <style> .class-to-add { background-color: tomato; } </style> <ChildComponent class="class-to-add" /> ...compiles to CSS without the class-to-add declaration, as svelte currently does not recognize the class name as being used. I'd expect class-to-add is bundled with all nested style declarations class-to-add is passed to ChildComponent as class-to-add svelte-HASH This looks like a bug / missing feature to me.
We should also allow passing unrecognised props to the rendered component. eg: tabindex might be required on some instances of a component, and not all. Why should developers have to add tabindex support to their components just that it may potentially be used
Glad to hear this is solved now: $restProps
The language should work for developers, not the other way around.
feel like there needs to be an easy way to style sub-components without their cooperation
The problem with working around the current limitations of Svelte style (:global, svelte:head, external styles or various wild card selectors) is that the API is uglier, bigger, harder to explain AND it loses one of the best features of Svelte IMO - contextual style encapsulation. I can understand that CSS classes are a bit uncontrollable, but this type of blocking will just push developers to work around it and create worse solutions.
I'm just pushing on the "is this really a good idea" front
This property makes the element so that it no longer seems to exist.
But this is a case where it feels like we're papering over a deficiency in our language, and is the sort of thing detractors might well point to and say 'ha! see?'.
Yes, they do but none of them allow arbitrary javascript anywhere in the template it is finely controlled. This deviates from that, in fact that is it's defining feature.
Adding my 2 cents to the discussion. Adding a class prop to a component doesn't necessarily mean it should apply the style to the root element, but it makes sense that it should apply it the main element visually. Let's take a modal component as an example.
You're not trying to pass a class to a dom element. You're passing a class to a component. It's up to the component to define what that means for the components use case. In most cases it would be passed to a dom element.
Reactive statements run immediately before the component updates, whenever the values that they depend on have changed.
I don’t want my source to be human-readable, not for protective reasons, but because I care about web performance more. I want my website to arrive at light speed on a tiny spec of magical network packet dust and blossom into a complete website. Or do whatever computer science deems is the absolute fastest way to send website data between computers. I’m much more worried about the state of web performance than I am about web education. But even if I was very worried about web education, I don’t think it’s the network’s job to deliver teachability
By the way, stuff like this is why I can’t quit Twitter even though I’d like to — we get to witness, and be part of, conversations like these between world-class programmers like Yehuda and Sebastian. It’s pretty cool!
Notice that all tags start with a lower case letter. This is different to other NativeScript implementations. The lower case letter lets the Svelte compiler know that these are NativeScript views and not Svelte components. Think of <page> and <actionBar> as just another set of application building blocks like <ul> and <div>.
I don’t want to force my opinion on you
This is false. Betteredge himself confesses during this conversation that his thoughts were "muddled" until "Mr. Franklin took them in hand, and pointed out what they ought to see". Furthermore, wasn't it Franklin who pushed Betteredge to write his recollection in the first place? Franklin's influence on the Betteredge is apparent, putting into question the reliability of his narrative as well as Franklin's motives.
It again brings up the dichotomy of opinion versus fact, subjective versus objective. This reminds me of "In a Grove" by Ryunosuke Akutagawa, which was adapted into the film "Rashomon" by Akira Kurosawa. Very similar themes and narrative structure.
In fact, you might use the two together. Since context is not reactive, values that change over time should be represented as stores:
Unless I just loginned, I agree it's "log in".
I think the conjugation is particularly helpful to see why it should be two separate words: "log in" -> "logging in" -> "logged in"
You can also think about each one with the way we stress the different syllables slightly when we're speaking: "log in to host.com" sounds like "log + in + to host.com" (each word is pretty much evenly stressed) "log into host.com" sounds like "log + INto host.com" (the stress is on "in") "login to host.com" sounds like "LOGin + to host.com" (the stress is on "log")
I wouldn't have thought about using the way we pronounce it to make a point about grammar, but somehow it seems to help slightly to make the point.
Co-hyponyms are labelled as such when separate hyponyms share the same hypernym but are not hyponyms of one another, unless they happen to be synonymous
Note that the double quotes around "${arr[@]}" are really important. Without them, the for loop will break up the array by substrings separated by any spaces within the strings instead of by whole string elements within the array. ie: if you had declare -a arr=("element 1" "element 2" "element 3"), then for i in ${arr[@]} would mistakenly iterate 6 times since each string becomes 2 substrings separated by the space in the string, whereas for i in "${arr[@]}" would iterate 3 times, correctly, as desired, maintaining each string as a single unit despite having a space in it.
Who needs a cookie consent banner? Any site or app running non-exempt cookies or scripts that could either:
have EU based users (i.e any website running cookies that isn’t actively blocking EU based users);
It would be nice if the tests weren't so implementation specific, but rather tested the essence of the functionality. I tried to make them less brittle but failed. To that end, re-writing all the tests in rspec would be (IMHO) a brilliant improvement and pave the way for better tests in the future and more flexibility in implementation.
Gray, J. (2020 April 01). Why this crisis is a turning point in history. https://www.newstatesman.com/international/2020/04/why-crisis-turning-point-history
Even so, the inline function is still created on every render, useCallback() just skips it.
NYC Rental Market Pushed to Breaking Point by Tenant Debts. (2020, July 8). Bloomberg.Com. https://www.bloomberg.com/news/articles/2020-07-08/coronavirus-moves-nyc-affordable-housing-crisis-to-breaking-point
a mixin does not need to extend AS::Concern to be a concern
The bug won’t be fixed today…and by next week, I’ll have forgotten about it - but some time in the future, before our software “goes gold” and gets shipped out to the public - we’ll search through the entire million lines of software for the word “FIXME” - which is unlikely to appear in any other context BECAUSE it’s not a real word!
BECAUSE it’s not a real word
In cryptography, deniable authentication refers to message authentication between a set of participants where the participants themselves can be confident in the authenticity of the messages, but it cannot be proved to a third party after the event.
Stipulations statutaires Cette grande liberté de fonctionnement n’est néanmoins possible qu’à condition d’avoir été autorisée par le contrat d’association. A défaut de stipulations statutaires les autorisant, les modes de consultation alternatifs aux réunions physiques « traditionnelles » ne sont pas admis par la jurisprudence.
when: never would be redundant here, this is implied any time rules are listed.
It may be the case that several sufficient conditions, when taken together, constitute a single necessary condition (i.e., individually sufficient and jointly necessary)
Its purpose is to decrease the reliance on privacy policies and enhance the ability for people to share and control personal information.
It’s useful to remember that under GDPR regulations consent is not the ONLY reason that an organization can process user data; it is only one of the “Lawful Bases”, therefore companies can apply other lawful (within the scope of GDPR) bases for data processing activity. However, there will always be data processing activities where consent is the only or best option.
Territorial point of view
I believe that beginning to distribute tools that patch Firefox and give back power to users and allow them to install unsigned extensions is necessary when an organization is taking away our rights without giving us a compelling reason for doing so.
I know, you don't trust Mozilla but do you also not trust the developer? I absolutely do! That is the whole point of this discussion. Mozilla doesn't trust S3.Translator or jeremiahlee but I do. They blocked page-translator for pedantic reasons. Which is why I want the option to override their decision to specifically install few extensions that I'm okay with.
I appreciate the vigilance, but it would be even better to actually publish a technical reasoning for why do you folks believe Firefox is above the device owner, and the root user, and why there should be no possibility through any means and configuration protections to enable users to run their own code in the release version of Firefox.
Krönke, J., Wunderling, N., Winkelmann, R., Staal, A., Stumpf, B., Tuinenburg, O. A., & Donges, J. F. (2020). Dynamics of tipping cascades on complex networks. Physical Review E, 101(4), 042311. https://doi.org/10.1103/PhysRevE.101.042311
Thus isomorphic structures cannot be distinguished from the point of view of structure only, and may be identified.
Before we get to passwords, surely you already have in mind that Google knows everything about you. It knows what websites you’ve visited, it knows where you’ve been in the real world thanks to Android and Google Maps, it knows who your friends are thanks to Google Photos. All of that information is readily available if you log in to your Google account. You already have good reason to treat the password for your Google account as if it’s a state secret.
You already have good reason to treat the password for your Google account as if it’s a state secret. But now the stakes are higher. You’re trusting Google with the passwords that protect the rest of your life – your bank, your shopping, your travel, your private life. If someone learns or guesses your Google account password, you are completely compromised. The password has to be complex and unique. You have to treat your Google account password with the same care as a LastPass user. Perhaps more so, because it’s easier to reset a Google account password. If your passwords are saved in Chrome, you should strongly consider using two-factor authentication to log into your Google account. I’ll talk about that in the next article.
Computer security[edit] A mistake in just one component can compromise the entire system.
A language that features polymorphism allows developers to program in the general rather than program in the specific. $(document).ready(function() { recordAdModuleData(2964, "impressions","Dictionary Ad"); });
I think it's useful to differentiate especially because there are many situations where "hack", and its conjugations, is the only effective term to describe something that has nothing to do with malicious violation of security measures or privacy.
Password reuse is normal. It's extremely risky, but it's so common because it's easy and people aren't aware of the potential impact.
So there's a lot of stuff getting hacked and a lot of credentials floating around the place, but then what? I mean what do evil-minded people do with all those email addresses and passwords? Among other things, they attempt to break into accounts on totally unrelated websites
Want to keep your users? Just make it easy for them to leave.
Mungkin Anda sudah memiliki desain template email yang Anda dapatkan dari seorang freelancer atau dari aplikasi desain lain? Pindahkan semua desain email Anda ke sini.
Anda tidak perlu lagi berkutat dengan keyboard laptop untuk mengetik isi email Anda, kalimat promosi sudah tersedia, tidak perlu lagi melakukan coding, cukup pilih templatenya, dan gunakan saat itu juga.
Import & Export Template Email
Tanpa Pusing, Tanpa Coding
Email Anda bisa dibaca di mode gelap (dark mode) pada aplikasi seperti Gmail. Jadi, Anda tidak perlu khawatir apakah pembaca Anda menggunakan mode gelap atau terang. Semua email Anda akan tetap terbaca dengan mudah dan nyaman.
Template email premium kami siapkan spesial untuk Anda, yang tentunya lebih profesional dari template default yang sudah ada sebelumnya.
Kami menyediakan template email siap pakai sehingga Anda tidak perlu khawatir lagi mau mendesain email seperti apa. Jumlah template email akan selalu kami tambah secara berkala.
Anda tidak perlu lagi pusing merangkai kalimat atau menyusun struktur email yang bagus, tinggal pilih mana kalimat promosi atau desain mana yang cocok untuk bisnis Anda.
Mendukung Dark Mode
Spesial
Tampilan email secara otomatis mengikuti layar smartphone/tablet. Jadi, Anda tidak perlu setting apapun dan bisa benar-benar fokus membuat konten email yang menarik.
Temukan banyak desain email premium yang cocok dengan bisnis Anda. Dibuat oleh banyak email copywriter dan desainer berpengalaman yang mungkin bisa menghasilkan banyak konversi untuk email campaign Anda.
Mobile Responsive
Banyak Pilihan
Lebih Dari Email Biasa
Anda bisa menambahkan teks, gambar, video YouTube, social media button, dan lain-lain ke dalam konten email Anda. Semua bisa Anda lakukan sesuai keinginan Anda. Kami menyediakan semua hal yang Anda butuhkan.
Desain email dibuat oleh mereka yang berpengalaman menuliskan kalimat-kalimat promosi yang menarik, juga para desainer yang terbiasa membuat desain email penawaran dengan format yang menarik.
For instance, if an IP address is sent with an ad request (which will be the case with almost any ad request as a consequence of internet protocols), that transmission will not breach any prohibition on sending PII to Google.
Our eyes decide our focus of attention and therefore our thoughts and our cognitive load.
The whole point of not relying on debt excessively in normal times is precisely to be able to use debt massively and without hesitation in situations like this.
While we recognise that analytics can provide you with useful information, they are not part of the functionality that the user requests when they use your online service – for example, if you didn’t have analytics running, the user could still be able to access your service. This is why analytics cookies aren’t strictly necessary and so require consent.
PECR always requires consent for non-essential cookies, such as those used for the purposes of marketing and advertising. Legitimate interests cannot be relied upon for these cookies.
This means genuinely asking for permission — using honesty to win trust by enabling rather than disabling user agency.
“meet the minimal requirements that we set based on European law” — which they define as being “if it has no optional boxes pre-ticked, if rejection is as easy as acceptance, and if consent is explicit.”
All of which means — per EU law — it should be equally easy for website visitors to choose not to be tracked as to agree to their personal data being processed.
Consent to tracking must also be obtained prior to a digital service dropping or accessing a cookie; only service-essential cookies can be deployed without asking first.
When consent is being relied upon as the legal basis for processing web users’ personal data
Some questions are only asked by people with a fundamental misunderstanding. The friends who walk into my office and ask, “have you read all of these” miss the point of books.
Transparently Secure. We believe that transparency and openness are the best foundation for trust so we are building Padloc completely out in the open. Our source code is developed under an open source licence so anyone can review it, provide feedback and even offer contributions at any time!
Today, U.S. public transportation resembles an elevator that can take you to dozens of floors, but not the one with your desk. The vast majority of Americans live within 3/4 miles of a public transit stop, but 60 percent of metro jobs and low-income housing are in poorly connected suburbs. We've reached a paradox in public transportation, Puentes says: Good transit coverage but poor job access. Across income levels, the paradox is even starker: 89& of low income communities live within 3/4 miles of a transit stop but only 26% of low skill jobs are accessible by public transportation.
background/main point/problem
And while Uber and Lyft have grabbed headlines for convincing people to abandon transit in big cities like New York and Chicago, the TransitCenter says that the effects of those services are limited to just a few dense, urban places. “The broader issue is clearing space for your transit to get through congestion, and most of that congestion is from private cars, not [ride-hail],” says Ben Fried, the group’s communications head. “Cities need to make transit fast, affordable, convenient." Truly attractive transit has to do that better than private cars.
main point
fixed-point
"fixed-point", "fix point" seems to be most important concept in Nix, because overrides, overridePackages, overlays are built using it.
over a small span of concrete which is part of the sidewalks which are part of the city which is part of the state and the country and the nation that is America
Expansion and point of view leading to a bigger picture. showing that counties we create are only as small as concrete.
In the end
Within my parish it went like that: I, a studied theology - once roman catholic - had joined the old catholic church a couple of years ago... after the early death of my brother I decided to use my studied talents within this church. The priest in my church was pleased to have a educted help and nugged me to get credits also within old catholic church for my finished studied - though i work within the IT Business. in the End I was sent to a small parish in vienna to help as Lector - not ordained but integrated within our hierarchy... So I got to know the people in this parish. I noticed i will have to spent nearly every sunday to get to know the people.. and to give them the chance to get acquainted ... When the Priest in this parish decided not to bury the burden of beeing responsible the parish stood empty... The bishop asked me to take over - beeing there and doing workships as good as gets - only once every couple of months the bishop could service us... so I did and prepared to get ordained as Deacon and then Priest. So it started 2010, Deacon 2011, Priest 2012 and elected Reverend 2014. But I was still working within the IT-Business - until today.. I reduced working time there... but now I have do do more work there again... the Parish will notice my lack of time and energy. I tried to get a valuable substitute for all the ministry lays can do in a parish, but the new bishop denied me help - this could detoriate the established order of the ordained priest - fear in their hearts that they could loose their full time jobs when lays get payed for their work - instead of the ordained priest. ... (sic!) I am a bit confused - am I in the rights church? is old-catholic not liberal and open minded? ... So I am searching for a compas to get my parish further on the way to beiing able to serve themselve... even without help from the bishop.
The music we listen to highly impacts our decision making, especially as adolescents. Adolescents are extremely impressionable, and the music they listen to has a great impact on how they decide to live their day to day lives. Popular musicians are seen as role models by the people who idolize them, and adolescents may try to represents the songs in which they favor through their actions every day.
Recent studies have found that adolescents who listen to music that supports substance abuse and violence have a greater chance to act upon what they listen to. What young adults and teenagers listen to through music and popular media will affect their decision making process. Specifically with substance abuse, and there is a direct uptake in use of illegal substances by adolescents who listen to music that promotes such activities. This can cause a whole societal problem considering most of todays popular music among adolescents touches upon substance abuse and violence. Adolescents are extremely impressionable and the music they listen can shape how a person tries to act, or represent themselves.
“vanishing point” geometry
More here.
Second, and more importantly: political toleration does not require the strong and doctrine of philosophical relativism. Increased awareness of diversity together with an awareness of the historical contingency of one’s own convictions will promote political toleration just as effectively.
This is it chief
The anti-relativists counter-argue that even if we grant that political tolerance is an important value, and that accepting relativism would promote it, we should never adopt philosophical views about the nature of truth or justification simply because of their assumed good moral or political consequences.
There is a key difference between moral relativism and tolerance, and making decisions and being a dick.
Advocates of relativism, particularly outside philosophical circles, often cite tolerance as a key normative reason for becoming a relativist. On this rationale, all ways of life and cultures are worthy of respect in their own terms, and it is a sign of unacceptable ethnocentrism to presume that we could single out one outlook or point of view as objectively superior to others.
This is the main point I will be arguing against, the belief that I thought I previously had.
some organizations and individuals have a disproportionate and unfair influence over what the government does
I agree and believe there is a lot of evidence for this, but you could also say that it has been this way forever, so it hasn't been increasing
Does the United States have a strategy for North Korea, or are these twists and turns merely the whims of a temperamental president?”
This questioning is a big US focus. Even though I think it is important to question these things and monitor coordination between the president and the administration, the view that the government is disorganized and failing is in turn leading to further distrust in our democratic process
What makes it particularly dangerous is that it is an authoritarianism born within the framework of democracy itself.”
I think this is a large part of our current crisis and what I want to focus on -- the backslide in our current democracy from lack of belief/maintenance. We are (arguably) not in a major war and have no global agenda to the scale of the Cold War or the WWs.Is not fighting things as a country preventing us from having pride/belief in our political system?
BOOK 12 THE ARGUMENT The Angel Michael continues from the Flood to relate what shall succeed; then, in the mention of Abraham, comes by degrees to explain, who that Seed of the Woman shall be, which was promised Adam and Eve in the Fall; his Incarnation, Death, Resurrection, and Ascention; the state of the Church till his second Coming. Adam greatly satisfied and recomforted by these Relations and Promises descends the Hill with Michael; wakens Eve, who all this while had slept, but with gentle dreams compos'd to quietness of mind and submission. Michael in either hand leads them out of Paradise, the fiery Sword waving behind them, and the Cherubim taking thir Stations to guard the Place. AS one who in his journey bates at Noone, Though bent on speed, so heer the Archangel paus'd Betwixt the world destroy'd and world restor'd, If Adam aught perhaps might interpose; Then with transition sweet new Speech resumes. [ 5 ] Thus thou hast seen one World begin and end; And Man as from a second stock proceed. Much thou hast yet to see, but I perceave Thy mortal sight to faile; objects divine Must needs impaire and wearie human sense: [ 10 ] Henceforth what is to com I will relate, Thou therefore give due audience, and attend. This second sours of Men, while yet but few; And while the dread of judgement past remains Fresh in thir mindes, fearing the Deitie, [ 15 ] With some regard to what is just and right Shall lead thir lives and multiplie apace, Labouring the soile, and reaping plenteous crop, Corn wine and oyle; and from the herd or flock, Oft sacrificing Bullock, Lamb, or Kid, [ 20 ] With large Wine-offerings pour'd, and sacred Feast, Shal spend thir dayes in joy unblam'd, and dwell Long time in peace by Families and Tribes Under paternal rule; till one shall rise Of proud ambitious heart, who not content [ 25 ] With fair equalitie, fraternal state, Will arrogate Dominion undeserv'd Over his brethren, and quite dispossess Concord and law of Nature from the Earth, Hunting (and Men not Beasts shall be his game) [ 30 ] With Warr and hostile snare such as refuse Subjection to his Empire tyrannous: A mightie Hunter thence he shall be styl'd Before the Lord, as in despite of Heav'n, Or from Heav'n claming second Sovrantie; [ 35 ] And from Rebellion shall derive his name, Though of Rebellion others he accuse. Hee with a crew, whom like Ambition joyns With him or under him to tyrannize, Marching from Eden towards the West, shall finde [ 40 ] The Plain, wherein a black bituminous gurge Boiles out from under ground, the mouth of Hell; Of Brick, and of that stuff they cast to build A Citie and Towre, whose top may reach to Heav'n; And get themselves a name, least far disperst [ 45 ] In foraign Lands thir memorie be lost, Regardless whether good or evil fame. But God who oft descends to visit men Unseen, and through thir habitations walks To mark thir doings, them beholding soon, [ 50 ] Comes down to see thir Citie, ere the Tower Obstruct Heav'n Towrs, and in derision sets Upon thir Tongues a various Spirit to rase Quite out thir Native Language, and instead To sow a jangling noise of words unknown: [ 55 ] Forthwith a hideous gabble rises loud Among the Builders; each to other calls Not understood, till hoarse, and all in rage, As mockt they storm; great laughter was in Heav'n And looking down, to see the hubbub strange [ 60 ] And hear the din; thus was the building left Ridiculous, and the work Confusion nam'd. Whereto thus Adam fatherly displeas'd. O execrable Son so to aspire Above his Brethren, to himself assuming [ 65 ] Authoritie usurpt, from God not giv'n: He gave us onely over Beast, Fish, Fowl Dominion absolute; that right we hold By his donation; but Man over men He made not Lord; such title to himself [ 70 ] Reserving, human left from human free. But this Usurper his encroachment proud Stayes not on Man; to God his Tower intends Siege and defiance: Wretched man! what food Will he convey up thither to sustain [ 75 ] Himself and his rash Armie, where thin Aire Above the Clouds will pine his entrails gross, And famish him of Breath, if not of Bread? To whom thus Michael. Justly thou abhorr'st That Son, who on the quiet state of men [ 80 ] Such trouble brought, affecting to subdue Rational Libertie; yet know withall, Since thy original lapse, true Libertie Is lost, which alwayes with right Reason dwells Twinn'd, and from her hath no dividual being: [ 85 ] Reason in man obscur'd, or not obeyd, Immediately inordinate desires And upstart Passions catch the Government From Reason, and to servitude reduce Man till then free. Therefore since hee permits [ 90 ] Within himself unworthie Powers to reign Over free Reason, God in Judgement just Subjects him from without to violent Lords; Who oft as undeservedly enthrall
Book XII: continues Michael's vision. Adam and Eve are comforted by hearing of the future redemption of their race. The poem ends as they wander forth out of Paradise and the door closes behind them.
A man, who had been hiding in the curtains of the bed, was standing there."Rainsford!" screamed the general. "How in God's name did you get here?""Swam," said Rainsford. "I found it quicker than walking through the jungle.
This is an example of the turning point of the story since it was expected that Rainsford had left the island but really came back to kill General Zaroff.
Twenty feet below him the sea rumbled and hissed. Rainsford hesitated. He heard the hounds. Then he leaped far out into the sea. . . .
This is where the rising action reaches its peak and later begins to dwindle down.
A man, who had been hiding in the curtains of the bed, was standing there."Rainsford!" screamed the general. "How in God's name did you get here?"
This is the climax of the story because this was an unexpected turning point where we hd assumed that Rainsford had escaped but really he had come back to get revenge on General Zaroff
Here in your Lordships’ House we are very fortunate to have a considerable number of noble and learned Lords who give us the benefit of their expertise. I have noticed that they often disagree, and very strongly. Therefore, surely keeping these issues in the Bill would save an awful lot of legal time and legal argument and would be better for the Government. I say that in a spirit of total helpfulness and support.
He hummed as he went in for a wash before dressing to go out. He combed his hair with deliberate care, the more so because he knew everybody looked on him as a sort of an outcast for failing so often. He knew that behind him the whole family and the town were laughing. He felt that they remarked among themselves that washing, combing his hair and putting on a well-ironed coat were luxuries too far above his state. He was a failure and had no right to such luxuries. He was treated as a sort of thick-skinned idiot. But he did not care. He answered their attitude by behaving like a desperado. He swung his arms, strode up and down, bragged and shouted, and went to a cinema. But all this was only a mask. Under it was a creature hopelessly seared by failure, desperately longing and praying for success. On the day of the results he was, inwardly, in a trembling suspense. ‘Mother,’ he said as he went out, ‘don’t expect me for dinner tonight. I will eat something in a hotel and sit through both the shows at the Palace Talkies.’
The narrator here with god-like omniscience, gives us the full picture of the kind of person that Iswaran is. How does this make you revisit his words and behaviours recounted just before? Does this narrative unveiling make you sympathetic to Iswaran?
This article addresses this deficiency by focusing on the question ‘does union membership enhance employee perceptions of voice?’
We suggested that employee perceptions of voice vary between the different levels of an organisation and proposed that trade union membership will be more likely to enhance individual employee perceptions of voice at the wider organisational level.
Opponents of President Trump face two battles.
In
If you have this kind of problem, I encourage you to take the time needed to follow this course until you reach that “AHA” moment
It only is my point of view but I would suggest to remove the youtube's inclusions and explain "in line" the few concepts they present.
Fifty years after the creation of the Department of Housing and Urban Development — and nearly that long after the passage of the Fair Housing Act of 1968 — the fight against the interlinked scourges of housing discrimination and racial segregation in America is far from finished. Economic isolation is actually growing worse across the country, as more and more minority families find themselves trapped in high-poverty neighborhoods without decent housing, schools or jobs, and with few avenues of escape.This did not happen by accident.
ndiana Gov. Mike Pence endorsed Ted Cruz on Friday, which may not be enough to help Cruz win Indiana, where he currently trails Donald Trump in polls, let alone the Republican nomination.
From: Jennifer Scribner-Snyder To: Beth Fremont Sent: Wed, 08/18/1999 9:06 AM Subject: Where are you?
This novel opens with an unusual form of point of view: an email exchange. Embedded in this first chapter are allusions to the era in which the novel is set. How does the email "POV" and the allusions help contextualize the story?
antive issue : A substantive statement of the issue consists of two parts -- i. the point of law in dispute ii. the key facts of the case re lating to that point of law in dispute (legally relevant facts) You must include the key facts from the case so that the issue is specific to that case. Typically, the disputed issue involves how the court applied some element of the pertinent rule to the facts of the specific case. Resolving the issue will determine the court’s disposition of the case.