Marketing Management Implementation and Control

2023-01-08 Thread Bdkhairul0
This is the book of the famous and one of the two fathers of contemporary digital marketing, Philip Kotler. We suggest this work to understand that reading the precursors of this area will clarify how marketing works from its inception. Marketing This book was prepared by Laura Fischer and Jorge

The WASM Revolution

2023-01-08 Thread elcritch
The revolution wasn't televised.

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread carterza
In the past few months, I've seen a ridiculous number of news articles claiming twitter is going to burn to the ground because Musk fired his engineering staff and cannot competently run a tech company, yet Twitter seems to still be running. It's not like it wasn't a hellscape before, plus most

The WASM Revolution

2023-01-08 Thread carterza
Did the revolution happen yet?

setting individual bit fields

2023-01-08 Thread ElegantBeef
Here is a much cleaner version of the code: import std/setutils type DataLine* {.size: sizeof(cint).} = enum D0 D1 D2 D3 D4 D5 D6 D7 DataLines = set[DataLine] const dataLineVals = [ D

The WASM Revolution

2023-01-08 Thread elcritch
Asyncdispatch relies on selectors.nim which rely on select or poll, IIRC. select/poll are generally part of the OS'es socket api and would require support from both WASI and the Nim side to port. I'm not familiar with what WASI provides in terms of select/poll or events, timers or callbacks, but

A seasoned programmer's take on Nim's docs

2023-01-08 Thread dlesnoff
I have changed the theme to the default white theme, added a table of contents, pushed to the end the references. I added a picture of an AST tree. My macro's example is far too stretched for a beginner's tutorial. I will probably explain the Fireship's macro in thorough details (if it has not

(In)secure Defaults

2023-01-08 Thread cblake
Since neither new Forum thread nor RFC arose out of , to cross reference: As per usual, feel free to either discuss or ignore.

Sublime Text user experience

2023-01-08 Thread AmjadBHD
Are you planning to support semantic highlighting in nimLSP ? It is supported in sublimeLSP.

Some beginner help needed with "or" vs "|" and use in nimraylib_now ...

2023-01-08 Thread suncore
Oh, I see. Thanks! Nim is deep and wide :-)

Add self signed cert to httpClient

2023-01-08 Thread ingo
maybe: `var req = newRequest(...) `req.allowAnyHttpsCertificate = true`

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread exelotl
> None of the fediverse frontends are nearly as good. I have to disagree here. If you want something lightweight, Pinafore is excellent. Tusky is great on Android. Even the regular Mastodon frontend is miles better than Twitter, it doesn't track you or pester you to sign in (as is the main bene

setting individual bit fields

2023-01-08 Thread ecarl42
I am setting an 8 bit field (set) where each bit is constructed individually. For the `readDataLinesFromPads` proc, is using the `if` and calling the `.incl` and `.excl` on each bit in the set the best way to approach this? const # data bus pad index db0 = 1005 db

Some beginner help needed with "or" vs "|" and use in nimraylib_now ...

2023-01-08 Thread jrfondren
Like the system implementation shows, you can overload `|` yourself if you want. But typeclasses is where the language uses `|`:

Some beginner help needed with "or" vs "|" and use in nimraylib_now ...

2023-01-08 Thread suncore
Thanks for your input. What is the "|" operator supposed to do? The error message was obtuse until I understood that "|" was not a built-in :-) Sorry about that.

Some beginner help needed with "or" vs "|" and use in nimraylib_now ...

2023-01-08 Thread jrfondren
It was added in 2018 as part of some pre-pass checking of when statements, and is probably just there so that a check can believe that `int|bool` makes enough sense to not reject. In the same commit: +proc compiles*(x: untyped): bool {.magic: "Compiles", noSideEffect, compileTime.}

Some beginner help needed with "or" vs "|" and use in nimraylib_now ...

2023-01-08 Thread suncore
Well, finally I found the documentation for "or" in the system library. I thought "or" was a built-in so I did not look in the libraries... Sure enough "or" works for both bools and ints of various sorts so using that was correct. Still wondering where "|" comes from though :-)

Some beginner help needed with "or" vs "|" and use in nimraylib_now ...

2023-01-08 Thread suncore
Hi! I'm using nimraylib_now to interface the raylib C library. There is a function called setConfigFlags that should be called with a bitmask or-ed set of flags (c-style). I tried calling it the C-way: setConfigFlags MSAA_4X_HINT | WINDOW_RESIZABLE Run but then the

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread PMunch
I think this is a good idea, at least make the limited amount of content the Nim socials generate available to the most people. Lemmy looks interesting as well, just tried to sign up (it's always a bit strange to go through a non-automatic sign-up). And for those who struggle to find Lemmy becau

Genuine Passports and Drivers License Available

2023-01-08 Thread Johansenmorgan12
((johansenmor...@proton.me))buy real drivers license online buy real passports online buy real registered passports online buy real registered drivers license online buy real registered id card online buy real registered resident permit online buy registered quality passports buy legit passports

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread federico3
There are already accounts writing announcements and summaries and I can set up bots to track specific sources if people are interested.

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread moigagoo
I think (hope?) it's ironic.

hire mercenary

2023-01-08 Thread blazehitman
Telegram: @ blazehitman#HIRE mercenaries (// wickr id// blazehitman )#Hitman for hire / #mercenary ServicesAll over the worldPrices – Depends on the specific targetCONTACT:blazehit...@protonmail.com Killing peopleKill common peopleKill important people (without bodyguards)Kill very important pe

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread ITwrx
i don't actively use twitter, under any regime so far, but do use the fediverse and host blurts.net which is a pleroma instance. I think an official nim fediverse account would be in nim's interest, especially over time, even if it's just to repeat tweets right now. I don't think it makes sense

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread Araq
> cringiest shit i've ever heard from you I'm trying my best to adapt to clown world.

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread SolitudeSF
cringiest shit i've ever heard from you

Trying to make a lexer, stops if it hits an operator.

2023-01-08 Thread shirleyquirk
i tend to do something along these lines: import std/[strutils,parseutils] type TokKind = enum def, id, str, num, kw, uk, op Token = object label: TokKind value: string const keywords = ["let", "const", "var",

The WASM Revolution

2023-01-08 Thread pmp-p
and the compiler that goes with it seems to works fine with Nim including iterators, but sadly i could not get `asyncdispatch` and the basic async sample to work on wasm3 runtime

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread moigagoo
> The more pressing problem with "create your own" is that it wouldn't be > official. It's not a problem really. When I needed a Docker image with Nim, I just went ahead and created it. It's official enough to me and many other users :-)

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread jrfondren
The more pressing problem with "create your own" is that it wouldn't be official. Anyway, if the aim's to increase Nim's presence on the fediverse then some options are: 1. talk about Nim 2. follow y-combinator and similar bots and engage with Nim-related posts 3. create your own bot to ec

Official Fediverse (e.g. Mastodon) account?

2023-01-08 Thread grd
@CyberTailor, you can always create your own. But this thread can become very hostile very soon.